-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
138 lines (110 loc) · 3.16 KB
/
Gemfile
File metadata and controls
138 lines (110 loc) · 3.16 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
ruby "2.6.1"
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.8'
# Use postgresql as the database for Active Record
gem 'pg'
gem 'sass', github: 'JhymerMartinez/sass', branch: '3.2.19-var-fix'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.5'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.2.2'
gem 'time_diff', '~> 0.3.0'
gem 'slowpoke'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem "jquery-ui-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 'dotenv-rails', require: 'dotenv/rails-now'
gem 'momentjs-rails'
gem 'google-analytics-rails', '~> 1.1.1'
gem 'slim'
gem 'devise'
gem 'devise_token_auth', '~> 0.1.43'
gem 'omniauth-google-oauth2', '~> 0.8.0'
gem 'decent_exposure'
gem 'kaminari'
gem 'lograge'
gem 'breadcrumbs_on_rails'
gem 'cancan'
gem 'jquery-datatables-rails', github: 'rweng/jquery-datatables-rails'
gem 'active_model_serializers'
gem 'paper_trail', '~> 4.0.0.beta'
gem 'little_decorator', github: 'macool/little_decorator'
gem 'nested_form'
gem 'acts-as-taggable-on'
gem 'google-api-client'
gem 'searchlight'
gem 'spellchecker', github: 'nicholasjhenry/spellchecker'
gem 'carrierwave'
gem 'carrierwave-base64'
gem 'rubocop', require: false
gem "rack-cors", require: "rack/cors"
gem "newrelic_rpm"
gem 'airbrake'
gem 'foreman'
gem 'pusher'
gem 'jquery-infinite-pages'
gem 'enumerize', '~> 2.0'
gem 'rubyXL'
gem "i18n-js"
gem 'friendly_id', '~> 5.1.0'
gem 'babosa'
gem 'fastimage'
gem 'cloudinary'
gem 'delayed_job_active_record'
gem 'delayed_job_web'
gem 'daemons' # to manage background processing (delayed_job)
gem 'polymer-rails', '~> 1.0.0'
gem 'polymer-paper-elements-rails', github: 'JhymerMartinez/paper-elements'
gem 'rubyzip', '>= 1.2.1'
gem 'axlsx', git: 'https://github.com/randym/axlsx.git', ref: '776037c0fc799bb09da8c9ea47980bd3bf296874'
group :doc do
gem 'yard'
end
group :api do
gem 'maruku'
gem 'apipie-rails'
end
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'capybara'
gem 'pry-rails'
gem 'poltergeist', '~> 1.6'
gem 'database_cleaner', '~> 1.3.0'
gem 'connection_pool'
gem 'rspec_junit_formatter'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'rack-mini-profiler'
gem 'annotate'
gem 'bullet'
gem 'letter_opener'
# gem 'neography', github: "maxdemarzi/neography", require: false
end
group :deployment do
gem 'capistrano', '~> 3.4'
gem 'capistrano-rails'
gem 'capistrano-passenger'
gem 'capistrano-rbenv'
gem 'capistrano-bundler'
gem 'slackistrano', require: false
gem 'capistrano3-delayed-job'
end
group :staging, :integration do
gem 'rails_12factor'
gem 'puma'
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'