diff --git a/Gemfile.lock b/Gemfile.lock index 414126b..b73d87b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,15 +2,15 @@ GEM remote: https://rubygems.org/ specs: CFPropertyList (2.2.8) - addressable (2.5.0) + addressable (2.5.1) public_suffix (~> 2.0, >= 2.0.2) ast (2.3.0) coderay (1.1.1) - coveralls (0.8.19) + coveralls (0.8.20) json (>= 1.8, < 3) - simplecov (~> 0.12.0) + simplecov (~> 0.14.1) term-ansicolor (~> 1.3) - thor (~> 0.19.1) + thor (~> 0.19.4) tins (~> 1.6) crack (0.4.3) safe_yaml (~> 1.0.0) @@ -21,7 +21,7 @@ GEM docile (1.1.5) facter (2.4.6) CFPropertyList (~> 2.2.6) - faraday (0.11.0) + faraday (0.12.0.1) multipart-post (>= 1.2, < 3) fast_gettext (1.1.0) ffi (1.9.18) @@ -29,7 +29,7 @@ GEM gettext (3.2.2) locale (>= 2.0.5) text (>= 1.3.0) - gettext-setup (0.18) + gettext-setup (0.21) fast_gettext (~> 1.1.0) gettext (>= 3.0.2) locale @@ -52,7 +52,7 @@ GEM guard-compat (~> 1.0) hashdiff (0.3.2) hiera (3.3.1) - json (2.0.3) + json (2.0.4) json-schema (2.8.0) addressable (>= 2.4) json-schema-rspec (0.0.4) @@ -64,7 +64,7 @@ GEM rb-inotify (~> 0.9, >= 0.9.7) locale (2.1.2) lumberjack (1.0.11) - mcollective-client (2.10.2) + mcollective-client (2.10.3) json stomp systemu @@ -86,7 +86,7 @@ GEM method_source (~> 0.8.1) slop (~> 3.4) public_suffix (2.0.5) - puppet (4.9.4) + puppet (4.10.0) CFPropertyList (~> 2.2.6) facter (> 2.0, < 4) gettext-setup (>= 0.10, < 1) @@ -111,7 +111,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.5.0) rspec-support (3.5.0) - rubocop (0.48.0) + rubocop (0.48.1) parser (>= 2.3.3.1, < 3.0) powerpack (~> 0.1) rainbow (>= 1.99.1, < 3.0) @@ -122,7 +122,7 @@ GEM semantic_puppet (0.1.4) gettext-setup (>= 0.3) shellany (0.0.1) - simplecov (0.12.0) + simplecov (0.14.1) docile (~> 1.1.0) json (>= 1.8, < 3) simplecov-html (~> 0.10.0) @@ -130,13 +130,13 @@ GEM slop (3.6.0) stomp (1.4.3) systemu (2.6.5) - term-ansicolor (1.4.1) + term-ansicolor (1.5.0) tins (~> 1.0) text (1.3.1) thor (0.19.4) tins (1.13.2) - unicode-display_width (1.1.3) - webmock (2.3.2) + unicode-display_width (1.2.1) + webmock (3.0.0) addressable (>= 2.3.6) crack (>= 0.3.2) hashdiff diff --git a/spec/unit/mcollective/security/choria_spec.rb b/spec/unit/mcollective/security/choria_spec.rb index 580fb84..51c0268 100644 --- a/spec/unit/mcollective/security/choria_spec.rb +++ b/spec/unit/mcollective/security/choria_spec.rb @@ -433,11 +433,11 @@ module MCollective body = security.empty_request body["message"] = "r_message" - %w(senderid requestid filter collective agent callerid ttl time).each do |k| + %w[senderid requestid filter collective agent callerid ttl time].each do |k| body["envelope"][k] = "r_%s" % k end - expected = Hash[%w(senderid requestid filter collective agent callerid ttl).map do |k| + expected = Hash[%w[senderid requestid filter collective agent callerid ttl].map do |k| [k.intern, "r_%s" % k] end] diff --git a/spec/unit/mcollective/util/playbook/data_stores/shell_data_store_spec.rb b/spec/unit/mcollective/util/playbook/data_stores/shell_data_store_spec.rb index 1ca0070..7520cb0 100644 --- a/spec/unit/mcollective/util/playbook/data_stores/shell_data_store_spec.rb +++ b/spec/unit/mcollective/util/playbook/data_stores/shell_data_store_spec.rb @@ -104,7 +104,7 @@ class DataStores end it "should accept valid keys" do - %w(foo_bar FOO_BAR FOO_bar 1FOO_bar FOO_bar1 1FOO1bar1).each do |test| + %w[foo_bar FOO_BAR FOO_bar 1FOO_bar FOO_bar1 1FOO1bar1].each do |test| expect(ds.validate_key(test)).to be(true) end end