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?