-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
96 lines (81 loc) · 2.28 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
92
93
94
95
96
ruby '3.1.2'
source 'https://rubygems.org'
gem 'activerecord-import'
gem 'awesome_print'
# gem 'aws-sdk-rails', '~> 3.0'
gem 'aws-sdk-ses', '~> 1.6'
gem 'aws-sdk-s3', '~> 1.0'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'bootstrap-tab-history-rails'
# gem 'bower-rails', '~> 0.11.0'
gem 'browser-timezone-rails'
gem 'concurrent-ruby', '1.3.4' # (devise dependency) https://stackoverflow.com/questions/79360526/uninitialized-constant-activesupportloggerthreadsafelevellogger-nameerror
# gem 'connection_pool'
# gem 'dalli'
gem 'devise'
gem 'devise-doorkeeper'
gem 'doorkeeper'
gem 'figaro'
gem 'font-awesome-rails'
gem 'friendly_id'
gem 'googlecharts'
# gem 'google-adwords-api', '1.5'
gem 'html_to_plain_text'
gem 'jbuilder', '~> 2.7'
# gem 'jquery-rails'
# gem 'jquery-ui-rails'
gem 'jsbundling-rails'
gem 'local_time'
# gem 'miro'
gem 'multi_json'
gem 'net-smtp', require: false # https://stackoverflow.com/questions/70500220
gem 'net-imap', require: false
gem 'net-pop', require: false
# gem 'oauth2'
gem 'order_as_specified'
gem 'pg'
gem 'pretender'
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-theme'
gem 'puma', '~> 5.0'
gem 'rails', '~> 6.0'
gem 'rails_admin', '~> 2.0'
# gem 'rails-html-sanitizer' # required by rails, no need to add separately
gem 'rack-cors'
gem 'rack_password'
gem 'rack-timeout', require: "rack/timeout/base"
gem 'reverse_markdown'
gem 'bootstrap-sass', '3.3.6'
gem 'sassc-rails', '>= 2.1.0'
gem 'slim-rails', '~> 3.0'
# gem 'sprockets', '~> 4.0'
# gem 'turbolinks'
gem 'turbo-rails', '~> 2.0'
gem 'stimulus-rails', '~> 1.2'
gem 'typhoeus'
# gem 'wicked_pdf', '~> 2.0'
# gem 'wkhtmltopdf-binary'
group :development, :test do
gem 'rspec-rails', '~> 6.0'
gem 'shoulda-matchers', '~> 5.0'
gem 'factory_bot_rails'
gem 'faker'
gem 'capybara'
gem 'selenium-webdriver', '~> 4.1'
gem 'pry-byebug'
gem 'better_errors'
gem 'binding_of_caller' # needed for better_errors features
end
# all gems provided by default in rails 6
group :development do
gem 'web-console', '>= 4.1.0'
gem 'spring'
gem 'solargraph'
# Can be configured to work on production as well, see:
# https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
# gem 'rack-mini-profiler', '~> 2.0'
gem 'listen', '~> 3.3'
end
# Use Redis for Action Cable
# gem 'redis', '~> 4.0'