-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
60 lines (48 loc) · 1.21 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
source 'https://rubygems.org'
ruby '3.1.2'
gem 'rails', '~> 6.1.7'
# used in the rail 5.2 version
gem 'bootsnap', '~> 1.3'
gem 'pg', '~> 1.4.6'
gem 'jquery-rails'
gem 'uglifier', '>= 2.7.0'
gem 'execjs'
# gem 'therubyracer', platforms: :ruby
gem 'mini_racer'
gem 'bcrypt'
gem 'rails-i18n'
gem 'globalize'
gem 'kaminari'
gem 'acts-as-taggable-on'
gem 'carrierwave', '~> 1.3.1'
gem 'bootstrap', '~> 4.3.1'
gem "bootstrap_form", ">= 4.0.0.alpha1"
gem 'font-awesome-rails', '~> 4.7.0.3'
gem 'sass-rails', '~> 5.0.6'
gem 'morrisjs-rails'
gem 'raphael-rails'
gem 'country_select', '~> 4.0.0'
gem 'redcarpet', '~> 3.4.0'
gem 'nokogiri'
gem 'rack-attack', '~> 5.4.2'
gem 'exception_notification'
gem 'mimemagic', '~> 0.3.7'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.0'
group :development do
gem 'puma'
# gem 'quiet_assets'
gem 'capistrano', '~> 3.4', require: false
gem 'capistrano-rails', '~> 1.1', require: false
gem 'capistrano-passenger', require: false
gem 'listen'
end
group :test do
gem 'minitest-reporters'
gem 'rails-controller-testing'
end
group :test, :development do
gem 'pry-rails'
# gem 'spring'
gem 'faker'
end