Last active
February 16, 2017 13:35
-
-
Save DonKoko/22eae3651090dd657539ba4c672fda9f to your computer and use it in GitHub Desktop.
Gemfile from heroku loco engine
This file contains 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
source 'https://rubygems.org' | |
if ENV['HEROKU_APP_NAME'] | |
ruby '2.2.2' | |
end | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '~> 4.2.6' | |
# Use SCSS for stylesheets | |
gem 'sass-rails', '~> 5.0' | |
# Use Uglifier as compressor for JavaScript assets | |
gem 'uglifier', '>= 1.3.0' | |
# Use CoffeeScript for .coffee assets and views | |
gem 'coffee-rails', '~> 4.1.0' | |
# See https://github.com/rails/execjs#readme for more supported runtimes | |
# gem 'therubyracer', platforms: :ruby | |
# Use jquery as the JavaScript library | |
gem 'jquery-rails' | |
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | |
gem 'turbolinks' | |
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
gem 'jbuilder', '~> 2.0' | |
# bundle exec rake doc:rails generates the API under doc/api. | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
# Use ActiveModel has_secure_password | |
# gem 'bcrypt', '~> 3.1.7' | |
# Use Unicorn as the app server | |
# gem 'unicorn' | |
# Use Puma as the app server | |
# gem 'puma', '~> 2.15.3' | |
# Use Passenger as the app server | |
gem 'passenger', '>= 5.0.22' | |
# Upload files to AWS S3 | |
gem 'carrierwave-aws' | |
# DEV | |
# gem 'locomotivecms', '~> 3.1.1' | |
# gem 'locomotivecms', github: 'locomotivecms/engine', ref: '8d091ff' | |
# gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: '0681850' | |
# | |
# gem 'locomotivecms_steam', :git => 'https://github.com/locomotivecms/steam', ref: 'e624ab686' | |
# gem 'locomotivecms', :git => 'https://github.com/locomotivecms/engine', ref: 'd5c959e' | |
# gem 'custom_fields', :git => 'https://github.com/locomotivecms/custom_fields', ref: '4a612e5' | |
# | |
gem 'puma_worker_killer' | |
gem 'derailed', group: :development | |
# GITHUB | |
# gem 'locomotivecms', github: 'locomotivecms/engine', branch: 'master' | |
# gem 'locomotivecms_steam', github: 'locomotivecms/steam', branch: 'master' | |
# STABLE | |
gem 'locomotivecms', '~> 3.2.0' | |
group :development, :test do | |
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | |
gem 'byebug' | |
end | |
group :development do | |
# Access an IRB console on exception pages or by using <%= console %> in views | |
gem 'web-console', '~> 2.0' | |
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |
gem 'spring' | |
end | |
group :production do | |
gem 'rails_12factor' | |
end | |
gem 'platform-api', '~> 0.3.0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment