-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
79 lines (74 loc) · 2.29 KB
/
Gemfile
File metadata and controls
79 lines (74 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
source "https://rubygems.org"
# rails gems
gem "rails", "~> 8.1.2"
gem "pg"
gem "propshaft"
gem "puma", ">= 5.0"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "jbuilder"
gem "bcrypt", "~> 3.1.21"
gem "tzinfo-data", platforms: %i[windows jruby]
gem "solid_cache"
gem "solid_queue"
gem "solid_cable"
gem "bootsnap", require: false
gem "thruster", require: false
group :development, :test do
gem "brakeman", require: false
gem "bundler-audit", require: false
gem "debug", platforms: %i[mri windows], require: "debug/prelude"
gem "dotenv"
gem "hotwire-spark"
gem "standard"
gem "standard-rails"
end
group :development do
gem "htmlbeautifier"
gem "kamal", "~> 2.10"
gem "letter_opener"
gem "overcommit", require: false
gem "web-console"
end
group :test do
gem "capybara"
gem "minitest-mock"
gem "mocha"
gem "selenium-webdriver"
gem "webmock"
end
# app gems
gem "collectionspace-client",
github: "collectionspace/collectionspace-client",
branch: "main"
gem "collectionspace-mapper",
github: "collectionspace/collectionspace-mapper",
branch: "data-toolkit"
# I feel like I shouldn't have to put this here, as data-toolkit never
# calls or uses collectionspace-refcache directly.
# If I don't put this here, and include the data-toolkit branch of
# collectionspace-refcache only in collectionspace-mapper Gemfile,
# then data-toolkit doesn't see refcache as a dependency at all and it
# falls over starting up when mapper is autoloaded and requires refcache:
# /Users/kristina/.rbenv/versions/3.4.1/lib/ruby/3.4.0/bundled_gems.rb:82:
# in 'Kernel.require': cannot load such file -- collectionspace/refcache (LoadError)
# If I add refcache as a dependency in mapper's gemspec, data-toolkit
# installs the latest release of refcache, which does not work with changes
# made in mapper.
# Hopefully this is here temporarily until we are not having to point to
# branches, and development isn't so intense
gem "collectionspace-refcache",
github: "collectionspace/collectionspace-refcache",
branch: "data-toolkit"
gem "csv"
gem "csvlint",
git: "https://github.com/lyrasis/csvlint.rb.git",
tag: "1.5.0"
gem "local_time"
gem "mission_control-jobs"
gem "pagy"
gem "rails_icons", "~> 1.6"
gem "scout_apm"
gem "tailwindcss-rails", "~> 4.4"
gem "tailwindcss-ruby", "~> 4.2"