This repository was archived by the owner on Mar 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
65 lines (53 loc) · 1.39 KB
/
Copy pathGemfile
File metadata and controls
65 lines (53 loc) · 1.39 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
source 'https://rubygems.org'
ruby '~> 2.7.5'
gem 'rails', '~> 5.2.0'
gem 'pg', '~> 1.0'
gem 'puma', '~> 4.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.6'
# Front-end
gem 'bootstrap-sass', '~> 3.3'
gem 'bootstrap-datepicker-rails', '~> 1.6.4'
gem 'bootstrap-select-wrapper-rails', '~> 1.10'
gem 'devise-bootstrap-views', '~> 0.0'
# Auth
gem 'devise', '~> 4.2'
gem 'has_secure_token', '~> 1.0'
# Utilities
gem 'httparty', '~> 0.14'
gem 'phony_rails', '~> 0.14'
gem 'enumerize', '~> 2.1'
# Image processing
gem 'carrierwave', '~> 1.0'
gem 'carrierwave-base64', '~> 2.5'
gem 'mini_magick', '~> 4.7'
gem 'kaminari', '~> 1.0'
gem 'phonelib', '~> 0.6'
# Payments
gem 'rubykassa', '~> 0.4'
# Push notifications
gem 'rpush', '~> 2.7'
# I18n
gem 'rails-i18n'
# Monitoring
gem 'rollbar'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
group :development, :test do
gem 'byebug'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.7'
gem 'annotate'
end
group :production do
gem 'fog-aws', '~> 0.13'
end