-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bundler extension refactor #71
Comments
Have you considered, instead of using spec.extensions << 'ext/Rakefile' which would have as its default something that looks like That's the approach I'm taking for the extensions I'm building with my thermite Rake tasks. |
Thank you! @malept I wasn't able to find documentation for using the Rakefile alternative to Makefile. But I did see some code in Bundler that would use it as an alternative. I'd like to try it out but I will need people with other operating systems to test it out as well. |
Not sure if this is helpful, but the same issue is present when you simply run |
Thank you @travisofthenorth . That does give us a bit more information to work with. It still leaves a lot of unknowns. |
I'm currently in the middle of figuring out building on Windows, but when I've got that working reasonably (and actually releasing a gem), I'd like to take a crack at integrating thermite with faster_path. |
@malept Looking into it your gem; is it aimed to be a solution to the problem we're having here? |
Pretty much. |
Putting notes here for later.
Note:
Which is supportive of jRuby. And the platform specific:
Perhaps we could consider using a standardized ruby path to link the gem. Before that though we would need to place the linked library in each of these locations. Just a thought. |
The current Bundler
extconf.rb
implementation has it's rake command error messages swallowed up by the Bundler gem installation system. We need to refactor the extension building to be verbose through Bundler.Also a way to test a bundle install of the gem in the test suite would be nice.
The text was updated successfully, but these errors were encountered: