Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating gem dependencies #247

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 35 additions & 33 deletions chef-powershell/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,62 +1,64 @@
PATH
remote: .
specs:
chef-powershell (1.0.10)
ffi (~> 1.15)
ffi-yajl (~> 2.4)
chef-powershell (18.1.0)
ffi (~> 1.16)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We're stuck with ~> 1.15.5 until we figure out the macOS issue similar to ffi/ffi#836

ffi-yajl (~> 3.0)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
chefstyle (2.2.0)
rubocop (= 1.24.1)
chefstyle (2.2.3)
rubocop (= 1.25.1)
coderay (1.1.3)
diff-lcs (1.5.0)
fauxhai-ng (9.1.0)
fauxhai-ng (9.3.0)
net-ssh
ffi (1.15.5-x64-mingw32)
ffi-yajl (2.4.0)
ffi (1.16.3-x64-mingw32)
ffi-yajl (3.0.0)
libyajl2 (>= 1.2)
libyajl2 (2.1.0)
method_source (1.0.0)
net-ssh (6.1.0)
parallel (1.21.0)
parser (3.1.0.0)
net-ssh (7.2.0)
parallel (1.24.0)
parser (3.2.2.4)
ast (~> 2.4.1)
pry (0.14.1)
racc
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
racc (1.7.3)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.2.0)
rexml (3.2.5)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.1)
rake (13.1.0)
regexp_parser (2.8.3)
rexml (3.2.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.2)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.6)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.3)
rubocop (1.24.1)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
rubocop (1.25.1)
parallel (~> 1.10)
parser (>= 3.0.0.0)
parser (>= 3.1.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.15.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.15.1)
parser (>= 3.0.1.1)
ruby-progressbar (1.11.0)
unicode-display_width (2.1.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
ruby-progressbar (1.13.0)
unicode-display_width (2.5.0)

PLATFORMS
x64-mingw32
Expand All @@ -70,4 +72,4 @@ DEPENDENCIES
rspec

BUNDLED WITH
2.2.29
2.2.33
6 changes: 4 additions & 2 deletions chef-powershell/chef-powershell.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = ">= 2.6"

spec.add_runtime_dependency "ffi", "~> 1.15"
spec.add_runtime_dependency "ffi-yajl", "~> 2.4"
spec.add_runtime_dependency "ffi", "~> 1.16"
spec.add_runtime_dependency "ffi-yajl", "~> 3.0"
# spec.add_runtime_dependency "ffi", "~> 1.15"
# spec.add_runtime_dependency "ffi-yajl", "~> 2.4"

spec.metadata = {
"bug_tracker_uri" => "https://github.com/chef/chef/issues",
Expand Down