-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
102 lines (78 loc) · 3.05 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
97
98
99
100
101
source 'https://rubygems.org'
ruby '3.3.1'
gem 'sassc-rails'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 7.1.3', '>= 7.1.3.2'
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem 'sprockets-rails'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.1'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '>= 5.0'
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem 'importmap-rails'
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem 'turbo-rails'
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem 'stimulus-rails'
# Use Redis adapter to run Action Cable in production
gem 'redis', '>= 4.0.1'
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem 'kredis'
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem 'bcrypt', '~> 3.1.7'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[ windows jruby ]
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
gem 'dotenv-rails', '~> 3.1'
gem 'draper', '~> 4.0', '>= 4.0.2'
gem 'activeadmin', '~> 3.2'
gem 'active_model_serializers', '~> 0.10.2'
gem 'carrierwave', '~> 3.0', '>= 3.0.7'
gem 'chartkick', '~> 5.0', '>= 5.0.6'
gem 'csv', '~> 3.3'
gem 'devise', '~> 4.9', '>= 4.9.4'
gem 'dry-validation', '~> 1.10'
gem 'groupdate', '~> 6.4'
gem 'open-weather-ruby-client', '~> 0.4.0'
gem 'pundit', '~> 2.3', '>= 2.3.1'
gem 'rolify', '~> 6.0', '>= 6.0.1'
gem 'rswag-api', '~> 2.13'
gem 'rswag-ui', '~> 2.13'
gem 'sidekiq', '~> 7.2', '>= 7.2.4'
gem 'sidekiq-scheduler', '~> 5.0', '>= 5.0.3'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[ mri windows ]
gem 'better_errors', '~> 2.10', '>= 2.10.1'
gem 'awesome_print', '~> 1.9', '>= 1.9.2'
gem 'binding_of_caller', '~> 1.0', '>= 1.0.1'
gem 'bullet', '~> 7.1', '>= 7.1.6'
gem 'rack-mini-profiler', '~> 3.3', '>= 3.3.1'
gem 'pry-byebug'
gem 'rspec-rails', '~> 6.1', '>= 6.1.2'
# rSwag API Documentation
gem 'rswag-specs', '~> 2.13'
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem 'web-console'
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem 'rack-mini-profiler'
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem 'spring'
end
group :test do
gem 'database_cleaner', '~> 2.0', '>= 2.0.2'
gem 'factory_bot_rails', '~> 6.4', '>= 6.4.3'
gem 'faker', '~> 3.3', '>= 3.3.1'
gem 'ffaker', '~> 2.23'
gem 'rubocop-rails', '~> 2.24', '>= 2.24.1'
gem 'rspec-collection_matchers'
gem 'rspec-retry', '~> 0.6.2'
gem 'shoulda-matchers', '~> 6.2'
gem 'simplecov', '~> 0.22.0', require: false
gem 'timecop', '~> 0.9.8'
gem 'webmock', '~> 3.23'
end