-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (44 loc) · 1018 Bytes
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
gem "rails", "~> 7.1.1"
gem "sprockets-rails"
gem "puma", "~> 6.3"
gem "jbuilder"
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem "bootsnap", require: false
gem "sassc-rails"
gem 'typhoeus'
gem "rack-attack"
gem "rack-attack-rate-limit", require: "rack/attack/rate-limit"
gem 'rack-cors'
gem 'rswag-api'
gem 'rswag-ui'
gem 'bootstrap'
gem "nokogiri"
gem "github-markup", require: "github/markup"
gem "redcarpet", :platforms => :ruby
gem "RedCloth"
gem "commonmarker"
gem "rdoc"
gem "org-ruby"
gem "creole"
gem "wikicloth"
gem "twitter-text"
gem "asciidoctor"
gem "github-linguist"
gem 'rexml'
gem 'appsignal'
gem 'vandamme', github: 'ecosyste-ms/vandamme'
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :development do
gem "web-console"
end
group :test do
gem "shoulda"
gem "webmock"
gem "mocha"
gem "rails-controller-testing"
end