forked from mshwery/minimalist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
62 lines (40 loc) · 1.23 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
source 'https://rubygems.org'
ruby '~> 3.2.0'
gem 'rails'
gem 'dotenv-rails'
gem 'rack-cors', :require => 'rack/cors'
gem 'mysql2'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# 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', '~> 1.2'
gem 'active_model_serializers'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'eco'
# Store ActiveRecord IDs non-obviously in URL using hashids.
gem 'hashids'
gem 'puma'
gem 'newrelic_rpm'
# rails 4.2 removes support for respond_to/respond_with
gem 'responders'
gem 'rails_12factor', group: :production
gem 'web-console', group: :development
# add authentication
gem 'devise'
gem 'omniauth-google-oauth2'
gem 'pundit'
gem 'bootsnap', require: false
gem 'autoprefixer-rails'