-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
78 lines (61 loc) · 1.51 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
source 'https://rubygems.org'
ruby '2.2.3'
gem 'rails', '4.2.5'
# Server and Database
gem 'puma'
gem 'pg', '~> 0.15'
# HTML, CSS and JavaScript Stack
gem 'slim-rails'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'react-rails'
gem 'materialize-sass'
gem 'therubyracer'
gem 'execjs'
# 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 Capistrano for deployment
# gem 'capistrano-rails', group: :development
# App specific
gem 'devise'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'cancancan'
gem 'simple_form'
gem 'meta-tags'
gem 'local_time'
gem 'kaminari'
gem 'bitmask_attributes'
gem 'newrelic_rpm'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'dotenv-rails'
gem 'rspec-rails'
gem 'shoulda'
gem 'factory_girl_rails'
gem 'did_you_mean'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
gem 'foreman'
gem 'spring'
gem 'quiet_assets'
gem 'better_errors'
gem 'letter_opener'
# Guards
gem 'guard-rspec', require: false
gem 'guard-livereload'
gem 'rack-livereload'
end
group :test do
gem 'codeclimate-test-reporter', require: nil
end