Skip to content

Commit

Permalink
Make spec compatible with current ruby-head (future ruby-3.5)
Browse files Browse the repository at this point in the history
Current `ruby-head` what become `ruby-3.5` at end of year
requires `base64` and `ostruct` gem clearly stated as dependency

Seems like at least `ostruct` requirement coming from `vulture` gem,
but this gem is deprecated, so I don't think we should bother there
  • Loading branch information
VitaliySerov committed Jan 17, 2025
1 parent 2a7e6e1 commit 5fb6981
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions droplet_kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.5.0'

spec.add_dependency 'base64', '~> 0'
spec.add_dependency 'bigdecimal'
spec.add_dependency 'faraday', '>= 0.15'
spec.add_dependency 'faraday-retry', '~> 2.2.0'
spec.add_dependency 'kartograph', '~> 0.2.8'
spec.add_dependency 'ostruct', '~> 0'
spec.add_dependency 'resource_kit', '~> 0.1.5'
spec.add_dependency 'virtus', '>= 1.0.3', '<= 3'

Expand Down

0 comments on commit 5fb6981

Please sign in to comment.