Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've a ruby gem that has different dependencies for each OS. I have to explicitly write all of them down:

On Mac OS X:

gem install livereload

on Linux:

gem install rb-inotify livereload

on Windows:

gem install eventmachine-win32 win32-changenotify win32-event livereload

Can I tweak a gemspec a bit so installation instructions would look like plain gem install livereload for every OS?

share|improve this question

3 Answers

up vote 9 down vote accepted

The proper way to do this is outlined here. Since the gemspec is evaluated at package time, you need to do it in a native extension. Don't worry, it's not that scary since its still just Ruby code (not compiling C or anything).

We are currently using this approach for some client tools for OpenShift (source). Then in your gemspec/Rakefile, instead of adding dependencies, you would add an extension. Note that the file needs to be named ext/mkrf_conf.rb for this to work.

share|improve this answer

You can use conditionals in addition to platform detection in order to add/exclude dependencies for a specific platform. For example, the following line your gemspec would add the dependency when installing the gem on windows.

spec.add_dependency 'eventmachine-win32', '0.12.10' if spec.platform.to_s == 'x86-mswin32'

You can set spec.platform using the RUBY_PLATFORM constant. Take a look at the buildr gemspec for a more detailed example of a gem which has different dependencies for each platform.

share|improve this answer
7  
I didn't think the spec was executed at install time; only at gem-build time. So this would only work if you were building a windows-specific gem on windows, e.g., right? – davetron5000 Mar 10 '12 at 13:17
1  
Like the previous commenter wrote, this does not work. Look at my comment for a way to get this to work. – Fotios Apr 20 '12 at 15:33
That only works if you package the gem on your local system. Fotios gives the correct way to do it (with ext_conf) below. – Stephen May 4 '12 at 15:06

In your Gemfile you can group dependencies by Ruby platform:

# Unix Rubies (OSX, Linux)
platform :ruby do
  gem 'rb-inotify'
end

# Windows Rubies (RubyInstaller)
platforms :mswin, :mingw do
  gem 'eventmachine-win32'
  gem 'win32-changenotify'
  gem 'win32-event'
end

That's the closest you can get, as far as I know.

For more detailed information, check the Gemfile man page.

share|improve this answer
5  
While this is very useful information in itself, it's not what he is asking for. He is the gem author, he wants to make sure that regardless of which platform you're on, when you install his gem, you get all the required dependencies for that specific platform. – Theo Jan 4 '11 at 18:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.