-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
61 lines (47 loc) · 1.44 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
source 'https://rubygems.org'
git_source(:github) { |repo| 'https://github.com/#{repo}.git' }
ruby '3.1.4'
gem 'rails', '~> 6.1.0'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 3.12'
gem 'rest-client', '~> 2.1.0'
gem 'jbuilder', '~> 2.5'
gem 'devise', '~> 4.8.1'
gem 'omniauth', '~> 2.1.0'
gem 'omniauth-rails_csrf_protection', '~> 1.0.0'
gem 'omniauth-google-oauth2', '~> 1.1.0'
gem 'mtg_sdk', '~> 3.2.1'
gem 'pundit', '~> 2.2.0'
gem 'bootsnap', '~> 1.11.1', require: false
gem 'dry-types', '~> 1.5.0'
gem 'image_processing', '~> 1.12'
gem 'dalli'
gem 'simple_form', '~> 5.1.0'
gem 'fast_jsonapi', '~> 1.5'
gem 'react-rails', '~> 3.2.0'
gem 'kaminari'
gem 'device_detector'
group :development, :test do
gem 'byebug', '~> 11.1.3', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails', '~> 5.1'
end
group :development do
gem 'web-console', '~> 3.7.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring', '~> 2.1.1'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'capybara', '~> 3.35.3'
gem 'selenium-webdriver', '~> 3.142.7'
gem 'webdrivers', '~> 4.7.0'
gem 'rspec_junit_formatter', '~> 0.5.1'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'open-uri', '~> 0.3.0'
gem 'rmagick', '~> 5.3'
gem 'discordrb', '~> 3.5', git: 'https://github.com/shardlab/discordrb', branch: 'main'
gem 'delayed_job', '~> 4.1.11'
gem 'delayed_job_active_record'
gem 'aws-sdk-s3', require: false
gem "shakapacker", "~> 7.1"