Skip to content

Instantly share code, notes, and snippets.

@JaysonMandani
Created January 6, 2013 04:52
Show Gist options
  • Save JaysonMandani/4465269 to your computer and use it in GitHub Desktop.
Save JaysonMandani/4465269 to your computer and use it in GitHub Desktop.
Test gems in different platforms
# Test gems on Macintosh OS X
group :test do
gem 'rspec-rails', '2.9.0'
gem 'capybara', '1.1.2'
gem 'rb-fsevent', '0.4.3.1', :require => false
gem 'growl', '1.0.3'
end
# Test gems on Linux
group :test do
gem 'rspec-rails', '2.9.0'
gem 'capybara', '1.1.2'
gem 'rb-inotify', '0.8.8'
gem 'libnotify', '0.5.9'
end
# Test gems on Windows
group :test do
gem 'rspec-rails', '2.9.0'
gem 'capybara', '1.1.2'
gem 'rb-fchange', '0.0.5'
gem 'rb-notifu', '0.0.4'
gem 'win32console', '1.3.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment