Skip to content

Instantly share code, notes, and snippets.

@ilake
Created May 25, 2013 03:46
Show Gist options
  • Save ilake/5647825 to your computer and use it in GitHub Desktop.
Save ilake/5647825 to your computer and use it in GitHub Desktop.

Gem for testing

group :development, :test do
  gem 'rspec-rails', '~> 2.12.0'

  # Auto testing
  gem 'guard-rspec'
  gem 'guard-spork'
  gem 'ruby_gntp'
  gem 'rb-fsevent', '~> 0.9.1'

  # JavaScript
  gem 'konacha'
  gem 'chai-jquery-rails'
  gem 'sinon-chai-rails'
  gem 'sinon-rails'
  gem 'ejs'
end

group :test do
  gem 'capybara'
  gem 'poltergeist'
  gem 'webmock'
  gem 'factory_girl_rails'
  gem 'shoulda-matchers'
  gem 'faker'
  gem 'database_cleaner'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment