forked from opf/primer_view_components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
61 lines (48 loc) · 1.6 KB
/
Copy pathGemfile
File metadata and controls
61 lines (48 loc) · 1.6 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# frozen_string_literal: true
source "https://rubygems.org"
rails_version = (ENV["RAILS_VERSION"] || "7.2.2.2").to_s
gem "rake", "~> 13.3"
gem "rack-cors"
gem "sprockets"
gem "sprockets-rails"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
if rails_version != "main"
gem "actioncable", rails_version
gem "actionview", rails_version
gem "activemodel", rails_version
gem "activesupport", rails_version
gem "railties", rails_version
else
git "https://github.com/rails/rails", ref: "main" do
# rubocop:disable Bundler/DuplicatedGem
gem "actioncable"
gem "actionview"
gem "activemodel"
gem "activerecord"
gem "activesupport"
gem "railties"
# rubocop:enable Bundler/DuplicatedGem
end
end
eval_gemfile "gemfiles/kuby.gemfile"
# Use Puma as the app server
gem "puma", "~> 6.6.1"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
gem "openproject-primer_view_components", path: "../"
gem "view_component", "~> 4.0.2"
gem "lookbook", "~> 2.3.13" unless rails_version.to_f < 7
gem "vite_rails", "~> 3.0"
gem "cssbundling-rails", "~> 1.4"
group :development do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring", "~> 4.4"
gem "spring-watcher-listen", "~> 2.1"
gem "hotwire-livereload", "~> 2.0"
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
gem "foreman"
gem "listen"
end