-
Notifications
You must be signed in to change notification settings - Fork 116
/
Gemfile
75 lines (63 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
68
69
70
71
72
73
74
75
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
rails_version = (ENV["RAILS_VERSION"] || "7.1.3.2").to_s
gem "rack-cors"
gem "rake", "~> 13.2"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# rubocop:disable Bundler/DuplicatedGem
if rails_version == "main"
git "https://github.com/rails/rails", ref: "main" do
gem "actionview"
gem "activemodel"
gem "activerecord"
gem "activesupport"
gem "railties"
end
else
gem "actionview", rails_version
gem "activemodel", rails_version
gem "activesupport", rails_version
gem "railties", rails_version
end
# rubocop:enable Bundler/DuplicatedGem
# Use Puma as the app server
gem "puma", "~> 6.4.2"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
gem "lookbook", "~> 2.3.1" unless rails_version.to_f < 7
gem "view_component", path: ENV["VIEW_COMPONENT_PATH"] if ENV["VIEW_COMPONENT_PATH"]
gem "kramdown", "~> 2.4"
gem "sourcemap", "~> 0.1"
gem "cssbundling-rails", "~> 1.4"
gem "vite_rails", "~> 3.0"
group :test do
gem "webmock"
end
# development dependencies
group :development do
gem "allocation_stats", "~> 0.1"
gem "benchmark-ips", "~> 2.13.0"
gem "capybara", "~> 3.40.0"
gem "cuprite", "~> 0.15"
gem "debug"
gem "erb_lint", "~> 0.6"
gem "erblint-github", "~> 1.0"
gem "listen", "~> 3.9"
gem "matrix", "~> 0.4.2"
gem "mocha"
gem "pry"
gem "rubocop"
gem "rubocop-github", "~> 0.20.0"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rails-accessibility", "~> 1.0"
gem "selenium-webdriver", "~> 4.18"
gem "simplecov", "~> 0.22.0"
gem "simplecov-console", "~> 0.9.1"
gem "sprockets"
gem "sprockets-rails"
gem "thor"
gem "timecop"
gem "yard", "~> 0.9.36"
end