forked from exercism/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
126 lines (97 loc) · 2.59 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
126
source 'https://rubygems.org'
ruby '3.2.1'
# Service/framework dependencies
gem 'rails', '~> 7.0.1'
gem 'cssbundling-rails'
gem 'jsbundling-rails'
gem 'turbo-rails'
gem 'propshaft', '0.4.0' # Changing this will break stuff. Work needed.
gem 'mysql2', '~> 0.5.4'
gem 'redis', '~> 4.0'
gem 'aws-sdk-s3', '~> 1'
gem 'aws-sdk-ecr'
gem 'anycable-rails', '~> 1.2.0'
gem 'grpc', '>= 1.53.0'
# Serving requests
gem 'puma', '~> 4.3'
gem 'rack-cors'
# Helper gems for Rails
gem 'bootsnap', '>= 1.4.2', require: false
gem 'bugsnag'
# Interaction gems
gem 'rugged', '1.4.2' # Git - upgrading will break in production but not dev due to EFS issue.
gem 'rest-client' # http
gem 'octokit' # GitHub
# General-purpose gems
gem 'mandate', '~> 2.0'
gem 'kaminari'
gem 'oj', '~> 3.14.0'
# Setup dependencies
gem 'exercism-config', '>= 0.86.0' # path: '../exercism_config'
# Model-level dependencies
gem 'image_processing', '~> 1.2'
gem 'friendly_id', '~> 5.4.0'
gem 'sidekiq', '~> 6.3'
gem 'sidekiq-failures'
gem 'sidekiq-scheduler'
# View-level Dependencies
gem 'hamlit'
gem 'commonmarker', '>= 0.23.8'
gem 'ansi-to-html'
# Authentication
gem 'devise', '~> 4.7'
# Omniauth
gem 'omniauth-github'
gem 'omniauth-discord'
gem 'omniauth-rails_csrf_protection'
# Payments
gem 'stripe'
gem 'coinbase_commerce', github: "exercism/coinbase-commerce-ruby"
# Discourse
gem 'discourse_api'
# Reporting
gem 'skylight'
gem 'listen', '>= 3.0.5', '< 4.0'
# Let's be nice to Windows users
platforms :mingw, :mswin, :x64_mingw, :jruby do
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data'
end
group :development, :test do
# gem 'pry'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
# To avoid polling for changes on Windows MRI, it needs this opt-in gem
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
end
group :development do
gem 'haml_lint', require: false
gem 'solargraph'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-performance', require: false
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'minitest'
gem 'minitest-retry'
gem 'mocha'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'webmock'
gem 'show_me_the_cookies'
# Adds assert_template
gem 'rails-controller-testing'
# Used for stripe mocking
gem 'recursive-open-struct'
end
gem 'addressable', '~> 2.7'
gem 'mini_magick'
gem 'elasticsearch', '6.8.3'
gem 'rack-attack', '~> 6.6'
gem 'geocoder', '~> 1.8'
gem 'maxminddb', '~> 0.1.22'
gem 'rubyzip', '~> 2.3'
gem "toml", "~> 0.3.0"