Forked from CH-JesseMa/Gem for Development and Test
Last active
August 29, 2015 13:58
Revisions
-
davidmccoy revised this gist
Apr 25, 2014 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -10,6 +10,9 @@ group :development, :test do gem 'capybara' gem 'jasmine' gem 'httparty' gem 'factory_girl_rails' gem 'rubocop' gem 'annotate' end # bundle install -
davidmccoy revised this gist
Apr 25, 2014 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,6 +7,9 @@ group :development, :test do gem 'guard-bundler', require: false gem 'terminal-notifier-guard' gem 'shoulda-matchers' gem 'capybara' gem 'jasmine' gem 'httparty' end # bundle install -
CH-JesseMa revised this gist
Apr 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ end # bundle install # rails g rspec:init # rails g rspec:install # bundle exec guard init # In the guard file: guard :rspec, cmd: 'bundle exec rspec’ do # bundle exec guard # create spec file e.g. spec/models/user_spec.rb -
CH-JesseMa revised this gist
Apr 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ end # bundle install # rails g rspec:init # rails g rspec:install # bundle exec guard init rspec # In the guard file: guard :rspec, cmd: 'bundle exec rspec’ do # bundle exec guard # create spec file e.g. spec/models/user_spec.rb -
CH-JesseMa revised this gist
Apr 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ end # bundle install # rails g rspec:init # rails g rspec:install # guard init spec # In the guard file: guard :rspec, cmd: 'bundle exec rspec’ do # bundle exec guard # create spec file e.g. spec/models/user_spec.rb -
CH-JesseMa revised this gist
Apr 6, 2014 . 1 changed file with 11 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,4 +7,14 @@ group :development, :test do gem 'guard-bundler', require: false gem 'terminal-notifier-guard' gem 'shoulda-matchers' end # bundle install # rails g rspec:init # rails g rspec:install # bundle exec guard init spec # In the guard file: guard :rspec, cmd: 'bundle exec rspec’ do # bundle exec guard # create spec file e.g. spec/models/user_spec.rb # run migration: rake db:migrate RAILS_ENV=test -
CH-JesseMa renamed this gist
Apr 6, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
CH-JesseMa created this gist
Apr 6, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ group :development, :test do gem 'pry-rails' gem 'rspec' gem 'rspec-rails' gem 'guard' gem 'guard-rspec' gem 'guard-bundler', require: false gem 'terminal-notifier-guard' gem 'shoulda-matchers' end