62 lines
1.5 KiB
Ruby
62 lines
1.5 KiB
Ruby
# -*- mode: yaml; -*-
|
||
source 'http://rubygems.org'
|
||
|
||
gem 'rails', '4.2.4'
|
||
|
||
gem 'pg'
|
||
|
||
gem 'bootstrap-sass', '~> 3.1.1.0'
|
||
|
||
# Lock version of sprocket to 2.11 as 2.12 causes an error.
|
||
# (see http://stackoverflow.com/questions/22391116/nomethoderror-in-pageshome-undefined-method-environment-for-nilnilclass)
|
||
gem 'sprockets', '2.11.0'
|
||
|
||
# Bourbon: fancy css mixins – https://github.com/thoughtbot/bourbon
|
||
gem 'bourbon'
|
||
|
||
# https://github.com/plataformatec/devise
|
||
gem 'devise'
|
||
gem 'bcrypt-ruby'
|
||
|
||
# https://github.com/ryanb/cancan
|
||
gem 'cancan'
|
||
|
||
# Deploy with Mina - http://nadarei.co/mina/
|
||
gem 'mina'
|
||
|
||
# For avatar images: https://github.com/jnicklas/carrierwave
|
||
gem 'carrierwave'
|
||
|
||
# We are sending mail. The latest version is just fine.
|
||
gem 'mail'
|
||
|
||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
||
gem 'therubyracer', platforms: :ruby
|
||
|
||
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
|
||
# gem 'ruby-debug'
|
||
# gem 'ruby-debug19', :require => 'ruby-debug'
|
||
|
||
# Bundle the extra gems:
|
||
# gem 'bj'
|
||
# gem 'nokogiri'
|
||
# gem 'sqlite3-ruby', :require => 'sqlite3'
|
||
# gem 'aws-s3', :require => 'aws/s3'
|
||
|
||
# These used to be in an ":assets" group. Which has been removed by Rails 4.
|
||
gem 'sass-rails'
|
||
gem 'coffee-rails'
|
||
gem 'uglifier'
|
||
|
||
gem 'jquery-rails'
|
||
|
||
# Bundle gems for the local environment. Make sure to
|
||
# put test-only gems in this group so their generators
|
||
# and rake tasks are available in development mode:
|
||
# group :development, :test do
|
||
# gem 'webrat'
|
||
# end
|
||
group :development do
|
||
# provides: rake diagram:all
|
||
#gem 'railroady'
|
||
end
|