I\'m developing a Rails app on a Mac, and I\'m new to testing, so I just added these gems to my Gemfile:
group :test, :development do gem
Gemfile actually is a regular ruby file, so you can use something like
case RUBY_PLATFORM when /darwin/ gem 'foo' when /win32/ gem 'bar' end