-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
32 lines (29 loc) · 914 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
source 'https://rubygems.org'
# Core Gems
gem 'rails', '~> 4.1.4'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '~> 2.5.3'
gem 'coffee-rails', '~> 4.0.1'
gem 'jquery-rails', '~> 3.1.1'
gem 'jbuilder', '~> 2.1.3'
gem 'bcrypt', '~> 3.1.7'
gem 'foundation-rails', '~> 5.3.3.0'
# Development gems
group :development, :test do
gem 'sqlite3', '~> 1.3.9' # dev & test database
gem 'better_errors', '~> 1.1.0'
gem 'binding_of_caller', '~> 0.7.2'
gem 'quiet_assets', '~> 1.0.3'
end
# Production gems
group :production do
gem 'pg', '~> 0.17.1' # Postgres Database
gem 'unicorn' # make sure you follow installation instructions for this gem
gem 'rails_log_stdout', github: 'heroku/rails_log_stdout'
gem 'rails3_serve_static_assets', github: 'heroku/rails3_serve_static_assets'
end
gem 'rails_12factor', group: :production
# RSpec
group :test, :development do
gem 'rspec-rails', '~> 3.0.2'
end