Skip to content
This repository has been archived by the owner on Jan 4, 2021. It is now read-only.

Commit

Permalink
(misc) update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ripienaar committed Apr 12, 2017
1 parent 4e95686 commit 10334f7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions Gemfile.lock
Expand Up @@ -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)
Expand All @@ -21,15 +21,15 @@ 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)
formatador (0.2.5)
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
Expand All @@ -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)
Expand All @@ -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
Expand All @@ -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)
Expand All @@ -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)
Expand All @@ -122,21 +122,21 @@ 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)
simplecov-html (0.10.0)
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
Expand Down
4 changes: 2 additions & 2 deletions spec/unit/mcollective/security/choria_spec.rb
Expand Up @@ -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]

Expand Down
Expand Up @@ -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
Expand Down

0 comments on commit 10334f7

Please sign in to comment.