Skip to content

Commit 66a9cea

Browse files
committed
Add explicit dependency for ostruct and pstore
Starting in Ruby 3.5, `pstore` and `ostruct` will not be bundled with Ruby's default gems, and will need to be added as explicit dependencies. The deprecation warnings merged into 3.4 for [pstore][pstore] and [ostruct][ostruct] and then backported for the [release of 3.3.5][3.3.5] [pstore]: ruby/ruby#10430 [ostruct]: ruby/ruby#10428 [3.3.5]: ruby/ruby#11420
1 parent 2c10a9b commit 66a9cea

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

mini_exiftool.gemspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ Gem::Specification.new do |s|
2424

2525
s.specification_version = 4
2626

27+
s.add_dependency(%q<ostruct>, [">= 0.6.0"])
28+
s.add_dependency(%q<pstore>, [">= 0.1.3"])
29+
2730
s.add_development_dependency(%q<rake>, [">= 0"])
2831
s.add_development_dependency(%q<rim>, ["~> 2.17"])
2932
s.add_development_dependency(%q<test-unit>, [">= 0"])

0 commit comments

Comments
 (0)