Last active
August 29, 2015 14:15
-
-
Save chadfennell/a8e26fbbae05432b27d7 to your computer and use it in GitHub Desktop.
Application Template v0.1
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 characters
| 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