Skip to content

Commit 9c1125f

Browse files
dhhrmacklin
andauthored
Cut down on the necessary dependencies (#84)
* Cut down on the necessary dependencies We only need a few things. * Already a dependency of actionpack * Already a dependency of actionpack * Latest platforms * Update additional lockfiles (#85) This can be done through the appraisal gem via `bundle exec appraisal install` or just through bundler via `for gemfile in $(ls gemfiles/*.gemfile); do BUNDLE_GEMFILE="$gemfile" bundle; done` Co-authored-by: Richard Macklin <[email protected]>
1 parent 656e0b2 commit 9c1125f

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Gemfile.lock

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ PATH
22
remote: .
33
specs:
44
importmap-rails (0.9.4)
5-
rails (>= 6.0.0)
5+
actionpack (>= 6.0.0)
6+
railties (>= 6.0.0)
67

78
GEM
89
remote: https://rubygems.org/
@@ -174,6 +175,7 @@ PLATFORMS
174175
arm64-darwin-20
175176
arm64-darwin-21
176177
x86_64-darwin-20
178+
x86_64-darwin-21
177179
x86_64-linux
178180

179181
DEPENDENCIES
@@ -190,4 +192,4 @@ DEPENDENCIES
190192
webdrivers
191193

192194
BUNDLED WITH
193-
2.2.30
195+
2.2.33

gemfiles/rails_7_propshaft.gemfile.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ PATH
22
remote: ..
33
specs:
44
importmap-rails (0.9.4)
5-
rails (>= 6.0.0)
5+
actionpack (>= 6.0.0)
6+
railties (>= 6.0.0)
67

78
GEM
89
remote: https://rubygems.org/

gemfiles/rails_7_sprockets.gemfile.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ PATH
22
remote: ..
33
specs:
44
importmap-rails (0.9.4)
5-
rails (>= 6.0.0)
5+
actionpack (>= 6.0.0)
6+
railties (>= 6.0.0)
67

78
GEM
89
remote: https://rubygems.org/

importmap-rails.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ Gem::Specification.new do |spec|
1515
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
1616

1717
spec.required_ruby_version = ">= 2.7.0"
18-
spec.add_dependency "rails", ">= 6.0.0"
18+
spec.add_dependency "railties", ">= 6.0.0"
19+
spec.add_dependency "actionpack", ">= 6.0.0"
1920
end

0 commit comments

Comments
 (0)