summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-03-06 10:33:36 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2018-03-09 15:07:47 -0800
commitfe1b2c37e6a177ad9ee1be8ef259b7d62e1f72ed (patch)
treed6f9c720d6516853e79e1a8bbaaef3634106c0b5
parent84ea1415f0a31780d3ff03de340e32af23ff62c4 (diff)
downloadchef-fe1b2c37e6a177ad9ee1be8ef259b7d62e1f72ed.tar.gz
ruby-2.5 changes
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--appveyor.yml2
-rw-r--r--omnibus_overrides.rb4
-rw-r--r--spec/unit/win32/security_spec.rb2
3 files changed, 4 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 19b127fa98..f825cd8768 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -9,7 +9,7 @@ cache:
environment:
matrix:
- - ruby_version: "24-x64"
+ - ruby_version: "25-x64"
clone_folder: c:\projects\chef
clone_depth: 1
diff --git a/omnibus_overrides.rb b/omnibus_overrides.rb
index 51c5df4a01..66b17933d0 100644
--- a/omnibus_overrides.rb
+++ b/omnibus_overrides.rb
@@ -3,7 +3,7 @@
# try to keep it machine-parsable.
override :rubygems, version: "2.7.6"
override :bundler, version: "1.16.1"
-override "nokogiri", version: "1.8.1"
+override "nokogiri", version: "1.8.2"
override "libffi", version: "3.2.1"
override "libiconv", version: "1.15"
override "liblzma", version: "5.2.3"
@@ -14,7 +14,7 @@ override "libyaml", version: "0.1.7"
override "makedepend", version: "1.0.5"
override "ncurses", version: "5.9"
override "pkg-config-lite", version: "0.28-1"
-override "ruby", version: "2.4.3"
+override "ruby", version: "2.5.0"
override "ruby-windows-devkit-bash", version: "3.1.23-4-msys-1.0.18"
override "util-macros", version: "1.19.0"
override "xproto", version: "7.0.28"
diff --git a/spec/unit/win32/security_spec.rb b/spec/unit/win32/security_spec.rb
index 9d98ccdf49..b5e441f2a0 100644
--- a/spec/unit/win32/security_spec.rb
+++ b/spec/unit/win32/security_spec.rb
@@ -59,7 +59,7 @@ describe "Chef::Win32::Security", :windows_only do
expect(Chef::ReservedNames::Win32::Security).to receive(:SetNamedSecurityInfoW).and_return(
Chef::ReservedNames::Win32::API::Error::ERROR_USER_NOT_FOUND
)
- expect { Chef::ReservedNames::Win32::Security.set_named_security_info "/temp_path", :SE_FILE_OBJECT, {} }.to raise_error Chef::Exceptions::Chef::Exceptions::UserIDNotFound
+ expect { Chef::ReservedNames::Win32::Security.set_named_security_info "/temp_path", :SE_FILE_OBJECT, {} }.to raise_error Chef::Exceptions::UserIDNotFound
end
end
end