-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
91 lines (82 loc) · 1.78 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
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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '6.1.7.6'
gem 'activesupport', '6.1.7.6'
gem 'concurrent-ruby', '~> 1.1.9'
gem 'logging', '~> 2.3.0'
gem 'actioncable'
gem 'ajax-datatables-rails'
gem 'bcrypt', '~> 3.1.12'
gem 'bootstrap-sass', '~> 3.3'
gem 'bootstrap-will_paginate'
gem 'carrierwave'
gem 'coffee-rails', '~> 5.0.0'
gem 'execjs'
gem 'faker'
gem 'fog-aws'
gem 'font-awesome-sass'
gem 'jbuilder'
gem 'jquery-datatables'
gem 'jquery-rails'
gem 'mime-types'
gem 'mini_magick', '~> 4.7'
gem 'puma', '~> 6'
gem 'sass-rails'
gem 'sprockets'
gem 'turbolinks', '~> 5'
gem 'uglifier', '3.2.0'
gem 'webpacker'
gem 'will_paginate', '~> 4.0.1'
gem 'aws-sdk-s3', require: false
gem 'bootstrap-datepicker-rails'
gem 'breadcrumbs_on_rails'
gem 'cancan'
gem 'cocoon'
gem 'devise'
gem 'haml'
gem 'haml-rails'
gem 'invisible_captcha'
gem 'jquery-ui-rails'
gem 'multipart-post'
gem 'pg'
gem 'sidekiq'
gem 'wysiwyg-rails'
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'byebug', platform: :mri
gem 'debug', require: false
gem 'rack-mini-profiler'
gem 'rdbg'
gem 'ruby-prof'
# gem 'spring'
end
group :development do
gem 'bullet'
gem 'coffee-script'
gem 'coffee-script-source'
gem 'dotenv'
gem 'erb2haml'
gem 'foreman'
gem 'listen'
gem 'pg_query'
gem 'prosopite'
gem 'rails_best_practices'
gem 'rubocop', '~> 1.59'
gem 'rubocop-capybara'
gem 'rubocop-minitest'
gem 'rubocop-rails'
gem 'web-console'
end
group :test do
gem 'guard'
gem 'guard-minitest'
gem 'minitest-reporters'
gem 'rails-controller-testing'
# gem 'simple-cov'
end
group :production do
gem 'rails_12factor'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]