-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (31 loc) · 874 Bytes
/
Gemfile
File metadata and controls
43 lines (31 loc) · 874 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
source 'https://rubygems.org'
ruby '2.1.0'
gem 'rails', '4.0.0'
gem 'pg'
gem 'unicorn'
gem 'therubyracer', platforms: :ruby
gem 'bcrypt-ruby', '~> 3.0.0'
# Assets
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem "ngmin-rails", "~> 0.4.0"
# Deploy to AWS
gem 'capistrano', '~>3.0.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
group :development, :test do
gem 'sqlite3'
gem 'letter_opener' # Preview emails in browser instead of sending
gem 'launchy', '2.3.0' # Open browser to show rendering
gem 'better_errors'
gem 'binding_of_caller'
end
group :test do
gem 'guard-rspec', '~> 4.2.5'
gem 'rspec-rails', '~> 2.14.1'
gem 'factory_girl_rails', '~> 4.3.0'
gem 'faker', '~> 1.2.0'
gem 'database_cleaner', '~> 1.2.0' # Clear data for each spec run
gem 'coveralls', '~> 0.7.0', require: false
end