Skip to content

Instantly share code, notes, and snippets.

@stevensona
Last active May 6, 2017 22:07
Show Gist options
  • Save stevensona/68aa44fca68c7e5ebf467c94b89382bf to your computer and use it in GitHub Desktop.
Save stevensona/68aa44fca68c7e5ebf467c94b89382bf to your computer and use it in GitHub Desktop.
Gemfile for new Rails app
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.1.0'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
gem 'high_voltage'
gem 'haml-rails'
gem 'clearance'
gem 'simple_form'
gem 'bootstrap', '~> 4.0.0.alpha6'
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.3.3'
end
group :development, :test do
gem 'capybara', '~> 2.13.0'
gem 'selenium-webdriver'
gem 'rspec-rails', '~> 3.5'
gem 'factory_girl_rails'
gem 'shoulda'
end
group :development do
gem 'capistrano-rails', group: :development
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'pry-rails'
gem 'brakeman', :require => false
gem 'rubocop', :require => false
gem 'bullet'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment