Skip to content

Instantly share code, notes, and snippets.

@chadfennell
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save chadfennell/a8e26fbbae05432b27d7 to your computer and use it in GitHub Desktop.

Select an option

Save chadfennell/a8e26fbbae05432b27d7 to your computer and use it in GitHub Desktop.
Application Template v0.1
gem_group :development do
# Debug seems to have trouble w/ Ruby 2.x, byebug is a replacment
gem 'byebug'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'capistrano', '~> 3.2.0'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-rvm'
gem 'fontello_rails_converter'
gem 'quiet_assets'
gem 'coveralls', require: false
end
gem_group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'faker'
end
gem_group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment