Skip to content

Instantly share code, notes, and snippets.

@hogihung
Last active August 29, 2015 14:04
Show Gist options
  • Save hogihung/fcc8add58891d900ac35 to your computer and use it in GitHub Desktop.
Save hogihung/fcc8add58891d900ac35 to your computer and use it in GitHub Desktop.
Base Gemfile for Ruby 2.1.2 and Rails 4.1.4 app with RSpec and Capybara testing.
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '4.1.4'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'sqlite3'
gem 'high_voltage'
group :development do
gem 'spring'
gem 'better_errors'
end
group :production, :development do
gem 'hirb'
end
gem 'rails_12factor', group: :production
group :development, :test do
gem 'rspec-rails', "~> 3"
gem 'pry-rails'
gem 'byebug'
gem 'quiet_assets'
gem 'awesome_print'
gem 'spring-commands-rspec'
gem 'simplecov'
end
group :test do
gem 'capybara'
gem 'capybara-webkit'
gem 'factory_girl_rails', '~> 4.0'
gem 'database_cleaner'
gem 'faker'
gem 'shoulda-matchers'
end
gem 'bootstrap-sass', '~> 3.1.1'
gem 'simple_form'
gem 'slim-rails'
gem 'flutie'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment