Skip to content

Instantly share code, notes, and snippets.

@RyanMacG
Created May 20, 2014 07:36
Show Gist options
  • Save RyanMacG/49b338af92ee36051a44 to your computer and use it in GitHub Desktop.
Save RyanMacG/49b338af92ee36051a44 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
# Backend
gem "pg"
gem "protected_attributes"
gem "therubyracer", :group => :production
# Development and test tools
# TODO: Something is depending on this in production
gem "rspec", "~> 2.1"
group :development, :test do
# Development tools
gem "quiet_assets"
gem "ruby-prof"
gem "better_errors"
gem "binding_of_caller"
gem "sextant"
# Autotest
gem "autotest-standalone"
# Parallel testing
gem "specjour"
# Coverage
gem "simplecov"
gem "rspec-rails"
gem "factory_girl_rails"
gem "shoulda-matchers", "1.0.0"
gem "capybara"
end
group :test do
gem 'sqlite3'
end
# Deployment
group :development do
gem "capistrano", "~>2.15.0"
gem "rvm-capistrano"
gem 'capistrano-slack', :git => 'https://github.com/j-mcnally/capistrano-slack.git'
gem "guard"
gem 'guard-rspec', require: false
gem "pry-rails"
gem "pry-debugger"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment