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

Discovering why Berkshelf is busted #19

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ end

group :development do
gem "aruba", "~> 0.10" # Stay below 1 until aruba/in_process monkeypatching stops
gem "cucumber", "< 4.0" # until we identify what is generating the ~@no_run tag in CI
gem "cucumber", "= 3.1.0" # until we identify what is generating the ~@no_run tag in CI
gem "cucumber-expressions", "= 5.0.13"
gem "chef-zero", ">= 4.0"
gem "dep_selector", ">= 1.0"
Expand Down
4 changes: 2 additions & 2 deletions berkshelf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ Gem::Specification.new do |s|

s.add_dependency "mixlib-shellout", ">= 2.0", "< 4.0"
s.add_dependency "cleanroom", "~> 1.0"
s.add_dependency "minitar", ">= 0.6"
s.add_dependency "minitar", ">= 0.6", "< 0.12"
s.add_dependency "retryable", ">= 2.0", "< 4.0"
s.add_dependency "solve", "~> 4.0"
s.add_dependency "thor", ">= 0.20"
s.add_dependency "octokit", "~> 4.0"
s.add_dependency "mixlib-archive", ">= 1.1.4", "< 2.0" # needed for ruby 3.0 / Dir.chdir removal
s.add_dependency "concurrent-ruby", "~> 1.0"
if RUBY_VERSION.match?(/3.0/)
s.add_dependency "chef", "~> 17.0" # needed for --skip-syntax-check
s.add_dependency "chef", "~> 17.10.122" # needed for --skip-syntax-check
elsif
s.add_dependency "chef", ">= 15.7.32"
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@
expect { subject }.to raise_error(Berkshelf::APIClient::ServiceUnavailable)
end
end
end
end
2 changes: 1 addition & 1 deletion spec/unit/berkshelf/community_rest_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,4 @@
describe "#stream" do
skip
end
end
end
Loading