Skip to content

Instantly share code, notes, and snippets.

@DonKoko
Last active June 21, 2016 09:30
Show Gist options
  • Save DonKoko/82f7a6ecb2cfdc1ccf96d5b03f95e707 to your computer and use it in GitHub Desktop.
Save DonKoko/82f7a6ecb2cfdc1ccf96d5b03f95e707 to your computer and use it in GitHub Desktop.
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'
# 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 '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.0.0.rc1'
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'
source 'https://rubygems.org'
gem 'locomotivecms_wagon', '~> 2.1.0'
gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: '0681850', require: false
# gem 'guard-livereload', '~> 2.5.1'
group :development do
# Mac OS X
gem 'rb-fsevent', '~> 0.9.1', require: 'rb-fsevent' if RUBY_PLATFORM.include?('darwin')
# Unix
gem 'therubyracer', require: 'v8', platforms: :ruby unless RUBY_PLATFORM.include?('darwin')
gem 'rb-inotify', '~> 0.9', require: 'rb-inotify' if RUBY_PLATFORM.include?('linux')
# Windows
gem 'wdm', '~> 0.1.1', require: 'wdm' if RUBY_PLATFORM =~ /mswin|mingw/i
end
group :misc do
# Add your extra gems here
# gem 'susy', require: 'susy'
# gem 'bourbon', require: 'bourbon'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment