forked from ViewComponent/view_component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (41 loc) · 1.13 KB
/
Gemfile
File metadata and controls
46 lines (41 loc) · 1.13 KB
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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
rails_version = (ENV["RAILS_VERSION"] || "~> 8").to_s
gem "rails", (rails_version == "main") ? {git: "https://github.com/rails/rails", ref: "main"} : rails_version
ruby_version = (ENV["RUBY_VERSION"] || "~> 3.4").to_s
ruby ruby_version
group :development, :test do
gem "allocation_stats"
gem "appraisal", "~> 2"
gem "benchmark-ips", "~> 2"
gem "better_html"
gem "bundler", "~> 2"
gem "capybara", "~> 3"
gem "cuprite"
gem "dry-initializer", require: true
gem "erb_lint"
gem "haml", "~> 6"
gem "jbuilder", "~> 2"
gem "m", "~> 1"
gem "method_source", "~> 1"
gem "minitest", "~> 5"
gem "propshaft", "~> 1"
gem "puma", "~> 6"
gem "rake", "~> 13"
gem "rails-dom-testing", "~> 2.3.0"
gem "redis"
gem "rspec-rails"
gem "rubocop-md", "~> 2"
gem "selenium-webdriver", "~> 4"
gem "simplecov-console", "< 1"
gem "simplecov", "< 1"
gem "slim", "~> 5"
gem "sprockets-rails", "~> 3"
gem "standard", "~> 1"
gem "tailwindcss-rails", "~> 2"
gem "turbo-rails"
gem "warning"
gem "yard-activesupport-concern", "< 1"
gem "yard", "< 1"
end