Skip to content

Instantly share code, notes, and snippets.

@jwo

jwo/Gemfile Secret

Last active October 5, 2015 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwo/fda11aeed226b3c2a024 to your computer and use it in GitHub Desktop.
Save jwo/fda11aeed226b3c2a024 to your computer and use it in GitHub Desktop.
Sample Gem File
source 'https://rubygems.org'
ruby '2.1.0'
gem 'rails', '4.0.3'
gem 'pg'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'puma'
gem 'bootstrap-sass'
gem 'simple_form'
gem 'active_model_serializers'
gem 'momentjs-rails', '~> 2.5.0'
gem 'bootstrap3-datetimepicker-rails', '~> 2.1.20'
gem 'authority'
gem 'bcrypt-ruby'
gem 'font-awesome-rails', '~> 4.0'
gem 'carrierwave'
gem 'carrierwave_direct'
gem 'fog'
group :development do
gem 'foreman'
end
group :development, :test do
gem 'spring', '~> 1.1'
gem 'pry'
gem 'pry-nav'
gem 'minitest-rails'
gem 'dotenv-rails'
gem 'quiet_assets'
gem 'timecop'
end
group :production do
gem 'rails_12factor'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment