Skip to content

Commit

Permalink
Merge pull request #3 from tomascco:add-missing-dependency-on-openssl
Browse files Browse the repository at this point in the history
Add missing dependency on OpenSSL
  • Loading branch information
tomascco committed Oct 19, 2023
2 parents 83a8fa9 + bb3c2f0 commit 793fcf1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ source "https://rubygems.org"

gemspec

gem "minitest", "~> 5.0"
gem "rake", "~> 13.0"
gem "minitest", "~> 5.0", group: :test
gem "simplecov", require: false, group: :test
gem "rake", "~> 13.0"
gem "sorbet", group: :development
gem "sorbet-runtime"
gem "tapioca", require: false
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ PATH
remote: .
specs:
rubrik (0.1.1)
openssl (>= 2.2.1)
pdf-reader (~> 2.10)
sorbet-runtime (~> 0.5)

Expand All @@ -15,6 +16,7 @@ GEM
hashery (2.1.2)
minitest (5.20.0)
netrc (0.11.0)
openssl (3.1.0)
parallel (1.23.0)
pdf-reader (2.11.0)
Ascii85 (~> 1.0)
Expand Down
1 change: 1 addition & 0 deletions rubrik.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency "pdf-reader", "~> 2.10"
spec.add_runtime_dependency "sorbet-runtime", "~> 0.5"
spec.add_runtime_dependency "openssl", ">= 2.2.1"

# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
Expand Down

0 comments on commit 793fcf1

Please sign in to comment.