Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@ PATH
bundler (>= 1.8.0)
chartkick (~> 3.4)
countries (~> 3.0)
csv
dragonfly (~> 1.4)
dragonfly-s3_data_store (~> 1.3)
dragonfly_libvips (~> 2.4)
drb
easymon (~> 1.4)
ejs (~> 1.1)
elasticsearch (~> 5.0)
Expand Down Expand Up @@ -65,6 +67,7 @@ PATH
kaminari-mongoid (~> 1.0)
local_time (~> 2.1)
lodash-rails (~> 4.17)
logger
loofah (>= 2.19.1, < 3)
measured (>= 2.0)
minitest (~> 5.14)
Expand All @@ -76,7 +79,9 @@ PATH
mongoid-encrypted (~> 1.0)
mongoid-sample (~> 0.1)
mongoid-tree (~> 2.1)
mutex_m
normalize-rails (~> 8.0)
ostruct
predictor (~> 2.3)
premailer-rails (~> 1.11)
puma (>= 4.3.1)
Expand Down Expand Up @@ -237,6 +242,7 @@ GEM
crass (1.0.6)
css_parser (1.17.1)
addressable
csv (3.3.5)
date (3.5.1)
dragonfly (1.4.1)
addressable (~> 2.3)
Expand All @@ -250,6 +256,7 @@ GEM
base64
dragonfly (~> 1.0)
ruby-vips (~> 2.0, >= 2.0.16)
drb (2.2.3)
easymon (1.4.2)
redis
ejs (1.1.1)
Expand Down Expand Up @@ -435,6 +442,7 @@ GEM
mongoid-tree (2.1.1)
mongoid (>= 4.0, < 8)
multi_json (1.15.0)
mutex_m (0.3.0)
net-imap (0.4.23)
date
net-protocol
Expand Down
9 changes: 9 additions & 0 deletions core/workarea-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,13 @@ s.add_dependency 'rails', '>= 6.1', '< 7.3'
# HACK for vendoring active_shipping
s.add_dependency 'active_utils', '~> 3.3' # loosened from ~> 3.3.1
s.add_dependency 'measured', '>= 2.0'

# Ruby 3.4+ extracted these from the default/bundled stdlib into standalone gems.
# Declaring them here ensures downstream implementations inherit them automatically
# when workarea-core is installed as a gem (not path-referenced).
s.add_dependency 'mutex_m' # Ruby 3.4+: no longer stdlib
s.add_dependency 'csv' # Ruby 3.4+: no longer stdlib
s.add_dependency 'drb' # Ruby 3.4+: no longer stdlib
s.add_dependency 'logger' # Ruby 3.4+: no longer stdlib
s.add_dependency 'ostruct' # Ruby 3.4+: no longer stdlib
end
Loading