Skip to content

Instantly share code, notes, and snippets.

@strychemi
Last active March 31, 2016 03:58
Show Gist options
  • Select an option

  • Save strychemi/a66a02ef14de1f6a99d1 to your computer and use it in GitHub Desktop.

Select an option

Save strychemi/a66a02ef14de1f6a99d1 to your computer and use it in GitHub Desktop.
# Better Erros
gem 'binding_of_caller'
group :development do
gem 'better_errors'
end
# Faker Gem
gem 'faker'
# Guard
group :development do
gem 'guard'
gem 'guard-rspec', require: false
# bundle exec guard init ( Generates the guardfile )
# bundle exec guard ( Runs Guard )
end
# Jazz Hands
group :development, :test do
# Note: Need to pull this fork directly because
# the original uses pry-debugger which doesn't work
# with Ruby 2
gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
gem 'pry-byebug'
# Factory Girl
gem "factory_girl_rails", "~> 4.0"
# require 'factory_girl_rails' (Add this in spec/rails_helper.rb)
# config.include FactoryGirl::Syntax::Methods (Add this in same file, under config method)
gem 'rspec-rails'
end
# Angular Gems
gem 'angularjs-rails'
gem 'angular_rails_csrf'
# make sure to require it in the application.js manifest file (//= require angular).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment