forked from coderdojo-japan/coderdojo.jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
100 lines (80 loc) · 2.02 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
source 'https://rubygems.org'
ruby '3.1.6'
gem 'bootsnap'
gem 'pg'
gem 'puma'
gem 'puma_worker_killer'
gem 'rails', '~> 7.0'
gem 'coffee-rails'
gem 'jbuilder'
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'font-awesome-rails'
gem 'haml-rails'
gem 'rails-html-sanitizer', '~> 1.4.4'
gem 'sass-rails', '>= 5'
gem 'simple_grid_rails'
gem 'uglifier'
# For handling error
# https://github.com/yuki24/rambulance
# Using patch gem due to NameError: uninitialized constant ApplicationHelper
# https://github.com/coderdojo-japan/coderdojo.jp/pull/1631#issuecomment-2424826474
gem 'rambulance', git: 'https://github.com/yasslab/rambulance'
# For redirection
gem 'rack-host-redirect'
# Add RSS for podcasts
gem 'rss'
# For SSL and CORS
gem 'secure_headers'
# Rendering legal documents
gem 'kramdown'
gem 'kramdown-parser-gfm'
gem 'faraday'
gem 'faraday_middleware'
gem 'google_drive'
gem 'koala'
gem 'lazy_high_charts', '1.5.8'
gem 'rack-attack'
gem 'rack-user_agent'
# For RSS feed
gem 'ruby-mp3info', require: 'mp3info'
# For Sitemap (Google Search Console)
gem 'sitemap_generator'
# For Pokemon image file downloads
gem 'aws-sdk-s3', '~> 1'
# Following warning are displayed and for prevention
# warning: already initialized constant Net::ProtocRetryError
# https://github.com/ruby/net-imap/issues/16
gem 'net-http'
gem 'uri'
group :development do
gem 'flamegraph', require: false
gem 'letter_opener_web'
gem 'listen'
gem 'memory_profiler', require: false
gem 'rack-mini-profiler', require: false
gem 'solargraph'
gem 'spring'
gem 'stackprof', require: false
gem 'web-console'
end
group :development, :test do
gem 'minitest-retry'
gem 'pry-byebug'
gem 'pry-doc'
gem 'pry-rails'
gem 'pry-stack_explorer'
gem 'rake'
gem 'rspec-retry'
gem 'capybara'
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 4.0'
gem 'selenium-webdriver'
gem 'dotenv-rails'
end
group :test do
gem 'rails-controller-testing'
end
# Enable to edit on GitHub Codespaces
# https://github.com/coderdojo-japan/coderdojo.jp/pull/1526
gem 'mini_racer'