diff options
author | Ken Barber <ken@bob.sh> | 2011-07-30 00:44:02 +0100 |
---|---|---|
committer | Ken Barber <ken@bob.sh> | 2011-07-30 00:44:02 +0100 |
commit | 35fefe186546427963d8c8a446fa98875d65ccad (patch) | |
tree | 9986ea2c264ce50c35f856218c8d26bb8c6872bd /lib/puppet/parser | |
parent | a1cae426f1d6b8f2c19184ec8aac3ebc47d97744 (diff) |
Fix some ruby 1.9.2 issues.
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r-- | lib/puppet/parser/functions/sort.rb | 2 | ||||
-rw-r--r-- | lib/puppet/parser/functions/values_at.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/parser/functions/sort.rb b/lib/puppet/parser/functions/sort.rb index 3785496..cefbe54 100644 --- a/lib/puppet/parser/functions/sort.rb +++ b/lib/puppet/parser/functions/sort.rb @@ -18,7 +18,7 @@ Sorts strings and arrays lexically. if value.is_a?(Array) then value.sort elsif value.is_a?(String) then - value.split("").sort.to_s + value.split("").sort.join("") end end diff --git a/lib/puppet/parser/functions/values_at.rb b/lib/puppet/parser/functions/values_at.rb index 7f1de8e..d3e69d9 100644 --- a/lib/puppet/parser/functions/values_at.rb +++ b/lib/puppet/parser/functions/values_at.rb @@ -38,7 +38,7 @@ Would return ['a','c','d']. raise(Puppet::ParseError, 'values_at(): Requires array to work with') end - indices = *arguments # Get them all ... Pokemon ... + indices = [arguments.shift].flatten() # Get them all ... Pokemon ... if not indices or indices.empty? raise(Puppet::ParseError, 'values_at(): You must provide ' + |