Created
June 13, 2015 14:25
-
-
Save rujmah/1145afe44f50eca3f28a to your computer and use it in GitHub Desktop.
Cucumber and Devise template for Rails
This file contains 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
# template includes: | |
# cucumber and devise | |
# gem 'pg' | |
gem 'devise' | |
gem_group :development, :test do | |
gem 'pry-rails' | |
gem 'rspec-rails' | |
gem 'factory_girl_rails' | |
gem 'cucumber-rails', require: false | |
gem 'database_cleaner' | |
gem 'selenium-webdriver' | |
end | |
run 'bundle install' | |
generate 'rspec:install' | |
generate 'cucumber:install' | |
generate 'devise:install' | |
rake 'db:create' | |
rake 'db:migrate' | |
# bundle binstubs 'rspec-core' | |
# bundle binstubs 'cucumber' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment