-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
71 lines (64 loc) · 1.38 KB
/
Gemfile
File metadata and controls
71 lines (64 loc) · 1.38 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
source 'https://rubygems.org'
ruby '2.6.1'
gem 'active_model_serializers'
gem 'airbrake'
gem 'autoprefixer-rails'
gem 'bootsnap', require: false
gem 'bootstrap-kaminari-views'
gem 'bootstrap-switch-rails'
gem 'bootstrap-wysihtml5-rails'
gem 'coffee-rails'
gem 'devise'
gem 'flutie'
gem 'font-awesome-rails'
gem 'has_scope'
gem 'highlight_js-rails'
gem 'jquery-rails'
gem 'kaminari'
gem 'pg'
gem 'puma', '4.0.0'
gem 'pundit'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '~> 5.2.3'
gem 'redcarpet'
gem 'responders'
gem 'rest-client'
gem 'sass-rails'
gem 'simple_form'
gem 'slim-rails'
gem 'uglifier', '>= 2.5.0'
gem 'virtus'
gem 'yajl-ruby', require: 'yajl'
gem 'yandex-translator'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'dotenv-rails'
gem 'guard-rspec'
gem 'mailcatcher'
gem 'pry-rails'
gem 'spring'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'hashie'
gem 'rspec-rails', '>= 3.1'
end
group :staging, :production do
gem 'newrelic_rpm', '>= 3.9.6'
gem 'rails_12factor'
gem 'redis-rack-cache'
gem 'redis-rails'
end
group :test do
gem 'database_cleaner'
gem 'poltergeist', '>= 1.5.0'
gem 'rails-controller-testing'
gem 'shoulda-matchers', require: false
gem 'simplecov', require: false
gem 'webmock'
end
source 'https://rails-assets.org' do
gem 'rails-assets-bootstrap-sass'
gem 'rails-assets-jcrop','0.9.12'
end