Created
March 13, 2014 22:05
-
-
Save frgooall/9538016 to your computer and use it in GitHub Desktop.
Gemfile - Cucumber-Rails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
ruby '2.1.1' | |
gem 'rails', '4.1.0.rc1' | |
gem 'sass-rails', '~> 4.0.1' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'coffee-rails', '~> 4.0.0' | |
gem 'jquery-rails' | |
gem 'wiselinks' | |
gem 'jbuilder', '~> 2.0' | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
gem 'bootstrap-sass', '>= 3.0.0.0' | |
gem 'devise' | |
gem 'pg' | |
gem 'pundit' | |
gem 'simple_form' | |
gem 'unicorn' | |
gem 'unicorn-rails' | |
gem 'omniauth-twitter' | |
gem 'omniauth-facebook' | |
gem 'decent_exposure' | |
gem 'semantic-ui-sass', '~> 0.12.3.0' | |
gem "sass_rails_patch", "~> 0.0.1" | |
gem 'rubocop' | |
group :development do | |
gem 'better_errors' | |
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :rbx] | |
gem 'quiet_assets' | |
gem 'rails_layout' | |
end | |
group :test do | |
gem 'capybara' | |
gem 'cucumber-rails', :git => "https://github.com/cucumber/cucumber-rails.git", :branch => "fix-rails-requiring-mini-test", :require => false | |
gem "minitest", "~> 5.3.0" | |
gem 'rspec-rails', '2.11.0' | |
gem 'database_cleaner' | |
gem 'factory_girl', '3.5.0' | |
#gem 'minitest-wscolor' | |
gem 'turn', :require => false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment