]> gitweb.fluxo.info Git - puppet-stdlib.git/commitdiff
Remove trailing whitespace
authorSharif Nassar <sharif@mediatemple.net>
Wed, 5 Feb 2014 23:01:45 +0000 (15:01 -0800)
committerSharif Nassar <sharif@mediatemple.net>
Wed, 5 Feb 2014 23:01:45 +0000 (15:01 -0800)
README.markdown
lib/puppet/parser/functions/base64.rb
lib/puppet/parser/functions/delete_undef_values.rb
lib/puppet/parser/functions/delete_values.rb
lib/puppet/parser/functions/range.rb
lib/puppet/parser/functions/str2bool.rb
spec/unit/puppet/parser/functions/delete_at_spec.rb
spec/unit/puppet/parser/functions/delete_spec.rb
spec/unit/puppet/parser/functions/delete_undef_values_spec.rb
spec/unit/puppet/parser/functions/delete_values_spec.rb
spec/unit/puppet/parser/functions/str2bool_spec.rb

index 822b8aff0482adcb7fdb4f164fb879972c6ce9aa..273c47a10e5f67b5b115c3543fa71a5702dd589f 100644 (file)
@@ -225,7 +225,7 @@ delete_undef_values
 Deletes all instances of the undef value from an array or hash.
 
 *Examples:*
-    
+
     $hash = delete_undef_values({a=>'A', b=>'', c=>undef, d => false})
 
 Would return: {a => 'A', b => '', d => false}
index d9a590aecea322ab194d3b80cbfd3fa670b0eb47..617ba31b6e68c8c7fa2fb62c82e0baa6130b25ab 100644 (file)
@@ -1,5 +1,5 @@
 module Puppet::Parser::Functions
+
   newfunction(:base64, :type => :rvalue, :doc => <<-'ENDHEREDOC') do |args|
 
     Base64 encode or decode a string based on the command and the string submitted
@@ -10,9 +10,9 @@ module Puppet::Parser::Functions
       $decodestring = base64('decode','dGhlc3RyaW5n')
 
     ENDHEREDOC
+
     require 'base64'
+
     raise Puppet::ParseError, ("base64(): Wrong number of arguments (#{args.length}; must be = 2)") unless args.length == 2
 
     actions = ['encode','decode']
@@ -20,18 +20,18 @@ module Puppet::Parser::Functions
     unless actions.include?(args[0])
       raise Puppet::ParseError, ("base64(): the first argument must be one of 'encode' or 'decode'")
     end
+
     unless args[1].is_a?(String)
       raise Puppet::ParseError, ("base64(): the second argument must be a string to base64")
     end
+
     case args[0]
       when 'encode'
         result = Base64.encode64(args[1])
       when 'decode'
         result = Base64.decode64(args[1])
     end
+
     return result
   end
 end
index 532639ecb7d5122e25f91baeffff78f9a18329c4..f94d4da8d422edd11ef4fdea34199041867950c7 100644 (file)
@@ -3,7 +3,7 @@ module Puppet::Parser::Functions
 Returns a copy of input hash or array with all undefs deleted.
 
 *Examples:*
-    
+
     $hash = delete_undef_values({a=>'A', b=>'', c=>undef, d => false})
 
 Would return: {a => 'A', b => '', d => false}
@@ -11,19 +11,19 @@ Would return: {a => 'A', b => '', d => false}
     $array = delete_undef_values(['A','',undef,false])
 
 Would return: ['A','',false]
-    
+
       EOS
     ) do |args|
 
     raise(Puppet::ParseError,
           "delete_undef_values(): Wrong number of arguments given " +
           "(#{args.size})") if args.size < 1
-    
-    unless args[0].is_a? Array or args[0].is_a? Hash 
+
+    unless args[0].is_a? Array or args[0].is_a? Hash
       raise(Puppet::ParseError,
             "delete_undef_values(): expected an array or hash, got #{args[0]} type  #{args[0].class} ")
     end
-    result = args[0].dup 
+    result = args[0].dup
     if result.is_a?(Hash)
       result.delete_if {|key, val| val.equal? :undef}
     elsif result.is_a?(Array)
index ca8eef576c47da9032013d9f565946cd977d9ec4..f6c8c0e6b6fbfcebf86d8a77d3f3afc0b9a877da 100644 (file)
@@ -19,7 +19,7 @@ Would return: {'a'=>'A','c'=>'C','B'=>'D'}
 
     if not hash.is_a?(Hash)
       raise(TypeError, "delete_values(): First argument must be a Hash. " + \
-                       "Given an argument of class #{hash.class}.") 
+                       "Given an argument of class #{hash.class}.")
     end
     hash.dup.delete_if { |key, val| item == val }
   end
index 0849491ace1ca8328430a38032b0f84468093b50..ffbdf84630d09d4a45ced389365290b6e52ab121 100644 (file)
@@ -28,7 +28,7 @@ Will return: ["a","b","c"]
 
 Will return: ["host01", "host02", ..., "host09", "host10"]
 
-Passing a third argument will cause the generated range to step by that 
+Passing a third argument will cause the generated range to step by that
 interval, e.g.
 
     range("0", "9", "2")
index fece7a6f27170667888859961061695aae8cfbdf..446732ece409ea2fc8ce943d0ae3ac1f1a10b902 100644 (file)
@@ -14,7 +14,7 @@ like: 0, f, n, false, no to 'false'.
       "given (#{arguments.size} for 1)") if arguments.size < 1
 
     string = arguments[0]
-    
+
     # If string is already Boolean, return it
     if !!string == string
       return string
index cfc0a2963a058b5a0e5f1329bc6acf37efc7dc76..593cf45929f38520418c77f88299d6b9d45517f4 100755 (executable)
@@ -17,9 +17,9 @@ describe "the delete_at function" do
     result.should(eq(['a','c']))
   end
 
-  it "should not change origin array passed as argument" do 
+  it "should not change origin array passed as argument" do
     origin_array = ['a','b','c','d']
     result = scope.function_delete_at([origin_array, 1])
     origin_array.should(eq(['a','b','c','d']))
-  end 
+  end
 end
index 06238f1522c20a96cea8559ae45dba06fee5a689..1508a63e914eb93a0a65f28e03f1fbb06c5ebc0e 100755 (executable)
@@ -35,7 +35,7 @@ describe "the delete function" do
     result.should(eq({ 'a' => 1, 'c' => 3 }))
   end
 
-  it "should not change origin array passed as argument" do 
+  it "should not change origin array passed as argument" do
     origin_array = ['a','b','c','d']
     result = scope.function_delete([origin_array, 'b'])
     origin_array.should(eq(['a','b','c','d']))
@@ -47,8 +47,8 @@ describe "the delete function" do
     origin_string.should(eq('foobarbabarz'))
   end
 
-  it "should not change origin hash passed as argument" do 
-    origin_hash = { 'a' => 1, 'b' => 2, 'c' => 3 } 
+  it "should not change origin hash passed as argument" do
+    origin_hash = { 'a' => 1, 'b' => 2, 'c' => 3 }
     result = scope.function_delete([origin_hash, 'b'])
     origin_hash.should(eq({ 'a' => 1, 'b' => 2, 'c' => 3 }))
   end
index 404aedaf39612e21762ed45b276e2ff61cee8b7e..b341d888ae1411cc855989336bc98010a4346f67 100644 (file)
@@ -27,15 +27,15 @@ describe "the delete_undef_values function" do
     result.should(eq({'a'=>'A','c'=>'C','d'=>'undef'}))
   end
 
-  it "should not change origin array passed as argument" do 
+  it "should not change origin array passed as argument" do
     origin_array = ['a',:undef,'c','undef']
     result = scope.function_delete_undef_values([origin_array])
     origin_array.should(eq(['a',:undef,'c','undef']))
-  end 
+  end
 
-  it "should not change origin hash passed as argument" do 
-    origin_hash = { 'a' => 1, 'b' => :undef, 'c' => 'undef' } 
+  it "should not change origin hash passed as argument" do
+    origin_hash = { 'a' => 1, 'b' => :undef, 'c' => 'undef' }
     result = scope.function_delete_undef_values([origin_hash])
     origin_hash.should(eq({ 'a' => 1, 'b' => :undef, 'c' => 'undef' }))
-  end 
+  end
 end
index 180cc3021c0f91681b6bf12c1bf1c1e44e6ba0c0..8d7f2315d4601c4895e61bb4519295832deabadf 100644 (file)
@@ -27,10 +27,10 @@ describe "the delete_values function" do
     result.should(eq({ 'a'=>'A', 'B'=>'C' }))
   end
 
-  it "should not change origin hash passed as argument" do 
-    origin_hash = { 'a' => 1, 'b' => 2, 'c' => 3 } 
+  it "should not change origin hash passed as argument" do
+    origin_hash = { 'a' => 1, 'b' => 2, 'c' => 3 }
     result = scope.function_delete_values([origin_hash, 2])
     origin_hash.should(eq({ 'a' => 1, 'b' => 2, 'c' => 3 }))
-  end 
+  end
 
 end
index ef6350f25361bef3d31f3b9375dbca254fbba868..73c09c729225818a479d095677e0f84dfefe18ba 100644 (file)
@@ -21,7 +21,7 @@ describe "the str2bool function" do
     result = scope.function_str2bool(["undef"])
     result.should(eq(false))
   end
-  
+
   it "should return the boolean it was called with" do
     result = scope.function_str2bool([true])
     result.should(eq(true))