-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
67 lines (62 loc) · 1.75 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
gem 'activeadmin'
gem 'activeadmin_json_editor', '~> 0.0.7'
gem 'annotate'
gem 'awesome_print'
gem 'base64', '0.1.1' # Server Passenger error https://www.reddit.com/r/rails/comments/18105z2/ruby_on_rails_phusion_passenger_error/
gem 'benchmark', '~> 0.2.1'
gem 'bootsnap', require: false
gem 'connection_pool'
gem 'dalli'
gem 'devise'
gem 'hashugar'
gem 'jbuilder'
gem 'json-schema'
gem 'mediawiki_api'
gem 'oauth2'
gem 'oj'
gem 'omniauth-mediawiki', git: 'https://github.com/ragesoss/omniauth-mediawiki.git'
gem 'omniauth-rails_csrf_protection'
gem 'parallel', "~> 1.23"
gem 'puma', '~> 5.0'
gem 'pg'
gem 'rails', '~> 7.0.5'
gem 'rexml'
gem 'sass-rails'
gem 'sidekiq'
gem 'sidekiq-history'
gem 'sidekiq-status'
gem 'sprockets', '<4'
gem 'sqlite3', '~> 1.4'
gem 'tzinfo-data', platforms: %i[ mingw mswin x64_mingw jruby ]
gem 'vite_rails'
group :development do
gem "capistrano", "~> 3.10", require: false
gem "capistrano-rails", "~> 1.3", require: false
gem 'capistrano-rvm', require: false
gem 'capistrano-passenger', '0.2.0', require: false
gem 'capistrano-rails-console', require: false
gem 'capistrano-rake', require: false
gem 'capistrano-sidekiq', '2.3.1', require: false
gem 'spring'
end
group :development, :test do
gem 'debug', platforms: %i[ mri mingw x64_mingw ]
gem 'rspec-rails', '~> 6.0.0'
gem 'factory_bot_rails'
gem 'spring-commands-rspec'
gem 'faker'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-performance', require: false
gem 'timecop', '~> 0.9.6'
end
group :test do
gem 'rspec-sidekiq'
gem 'shoulda-matchers', '~> 5.0'
gem 'vcr'
gem 'webmock'
end