Skip to content

Instantly share code, notes, and snippets.

Revisions

  1. davidmccoy revised this gist Apr 25, 2014. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions Gem for Development and Test
    Original 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
  2. davidmccoy revised this gist Apr 25, 2014. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions Gem for Development and Test
    Original 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
  3. @CH-JesseMa CH-JesseMa revised this gist Apr 6, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Gem for Development and Test
    Original 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
    # 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
  4. @CH-JesseMa CH-JesseMa revised this gist Apr 6, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Gem for Development and Test
    Original 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
    # 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
  5. @CH-JesseMa CH-JesseMa revised this gist Apr 6, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Gem for Development and Test
    Original 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 spec
    # 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
  6. @CH-JesseMa CH-JesseMa revised this gist Apr 6, 2014. 1 changed file with 11 additions and 1 deletion.
    12 changes: 11 additions & 1 deletion Gem for Development and Test
    Original 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
    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

  7. @CH-JesseMa CH-JesseMa renamed this gist Apr 6, 2014. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  8. @CH-JesseMa CH-JesseMa created this gist Apr 6, 2014.
    10 changes: 10 additions & 0 deletions gistfile1
    Original 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