Skip to content

Instantly share code, notes, and snippets.

@fieldform
Created March 6, 2013 01:48
Show Gist options
  • Select an option

  • Save fieldform/5096078 to your computer and use it in GitHub Desktop.

Select an option

Save fieldform/5096078 to your computer and use it in GitHub Desktop.
Loading gems based on platform
platform = RUBY_PLATFORM.match(/(linux|darwin)/)[0].to_sym
Bundler.require(platform)
group :linux do
gem 'rb-inotify', '~> 0.9'
end
group :darwin do
gem 'rb-fsevent'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment