-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (28 loc) · 808 Bytes
/
Gemfile
File metadata and controls
34 lines (28 loc) · 808 Bytes
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
source "https://rubygems.org"
gem "rails", "~> #{ENV["RAILS_VERSION"] || "8"}"
# External dependencies with specific versions for development
gem "view_component", "~> 4.1"
gem "phlex-rails", ">= 0.8.1", "< 3"
gem "tailwind_merge", ">= 0.5.2", "< 2"
gemspec name: "vident", path: "./"
gemspec name: "vident-phlex", path: "./"
gemspec name: "vident-view_component", path: "./"
group :development, :test do
# Development and testing gems
gem "appraisal"
gem "standard"
gem "simplecov", require: false
gem "rake", "~> 13.0"
gem "minitest", "~> 5.0"
gem "faker"
gem "puma"
gem "foreman"
gem "sqlite3"
gem "capybara"
# Asset things for the dummy app
gem "sprockets-rails"
gem "turbo-rails"
gem "importmap-rails"
gem "stimulus-rails"
gem "tailwindcss-rails", "~> 3.3.1"
end