From 66a9cea3b5ec169376b7d9f69e9855f260ae5c90 Mon Sep 17 00:00:00 2001 From: Eric Collins Date: Mon, 23 Sep 2024 16:00:50 -0400 Subject: [PATCH] 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]: https://github.com/ruby/ruby/pull/10430 [ostruct]: https://github.com/ruby/ruby/pull/10428 [3.3.5]: https://github.com/ruby/ruby/pull/11420 --- mini_exiftool.gemspec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mini_exiftool.gemspec b/mini_exiftool.gemspec index 2507724..cfa4bef 100644 --- a/mini_exiftool.gemspec +++ b/mini_exiftool.gemspec @@ -24,6 +24,9 @@ Gem::Specification.new do |s| s.specification_version = 4 + s.add_dependency(%q, [">= 0.6.0"]) + s.add_dependency(%q, [">= 0.1.3"]) + s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, ["~> 2.17"]) s.add_development_dependency(%q, [">= 0"])