Skip to content

Instantly share code, notes, and snippets.

@maxy
Last active August 29, 2015 14:05
Show Gist options
  • Save maxy/2793e7dd28c6b033c4e7 to your computer and use it in GitHub Desktop.
Save maxy/2793e7dd28c6b033c4e7 to your computer and use it in GitHub Desktop.
Gemfile template.
source 'https://rubygems.org'
gem 'rails'
gem 'sqlite3'
gem 'sidekiq'
gem 'act-fluent-logger-rails'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'draper'
gem 'acts-as-taggable-on'
gem 'kaminari'
gem 'rails_autolink'
gem 'rails_config'
gem 'dotenv-rails'
gem 'sitemap_generator'
gem 'whenever', :require => false
# For operation
gem 'exception_notification'
gem 'newrelic_rpm'
group :doc do
gem 'sdoc', '~> 0.4.0'
end
group :development, :staging do
# Development server
gem 'passenger'
gem 'powder'
# for deployment.
gem "capistrano", "~> 3.2.0"
gem 'capistrano-rbenv', '~> 2.0'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano-rails', '~> 1.1.2'
gem 'spring'
# For debugging
gem 'pry-rails'
gem 'pry-doc'
gem 'pry-stack_explorer'
gem 'pry-byebug'
gem 'better_errors'
gem 'binding_of_caller'
gem 'hirb'
gem 'hirb-unicode'
gem 'tapp'
gem 'awesome_print'
gem 'quiet_assets'
gem 'annotate', git: 'git://github.com/ctran/annotate_models.git'
# For testing.
gem 'rspec-rails'
gem 'capybara'
gem 'cucumber-rails'
gem 'factory_girl_rails'
gem 'timecop'
gem 'database_rewinder'
gem 'serverspec'
gem 'guard-rspec'
gem 'guard-livereload'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment