-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGemfile
125 lines (89 loc) · 2.32 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
gem "rails", "~> 7.0.4"
gem 'mysql2'
gem 'paper_trail'
gem "ranked-model"
gem 'uglifier'
#bootstrap stuff
# gem 'sass-rails'
gem 'log4r'
#for user authentication
gem 'devise'
gem 'pundit'
#to handle .slim files
gem 'slim-rails'
#for forms
gem 'simple_form'
gem 'will_paginate'
#for attachments
gem 'kt-paperclip'
gem 'with_advisory_lock'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
gem 'jsonapi-rails'
gem 'jsonapi-rspec'
gem 'routing-filter'
gem 'http_accept_language'
gem 'rails-i18n', '~> 7.0.0'
gem 'i18n-active_record', :require => 'i18n/active_record'
# gem 'i18n-tasks'
gem 'rails-observers'
gem 'friendly_id', '~> 5.4.2'
# gem 'mobility', '~> 1.0.3'
# gem 'friendly_id-mobility', '~> 1.0.3'
gem 'globalize'
gem 'globalize-accessors'
gem "sidekiq"
gem "sidekiq-scheduler"
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
gem 'newrelic_rpm'
# gem 'puma', '~> 5.0'
gem 'puma', '~> 6.3.1'
gem "recaptcha", require: "recaptcha/rails"
# gem 'bootsnap', require: false
# gem 'websocket-extensions', '~> 0.1.5'
gem "cssbundling-rails", "~> 1.1"
group :development do
gem "better_errors"
gem "binding_of_caller"
gem "byebug"
# gem "rails-erd"
gem 'rb-readline'
gem 'rubocop'
gem 'rack-mini-profiler'
# gem 'rbtrace'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
# gem 'spring'
# gem 'spring-watcher-listen', '~> 2.1.0'
end
group :development, :test do
gem 'brakeman'
gem 'fuubar'
gem 'rspec-rails'
gem 'pry'
gem 'rubocop-rspec'
gem 'listen'
gem 'faker'
gem 'factory_bot_rails'
gem 'shoulda-matchers'
gem 'shoulda-callback-matchers'
# gem 'capybara'
gem 'database_cleaner'
end
group :test do
gem 'simplecov', require: false
end
# To use debugger
# gem 'debugger'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "vite_rails", "3.0.15"
gem "vite_ruby", "3.3.4"
gem 'vite_plugin_legacy'
gem "haml-rails"
# gem "sassc-rails"