diff options
author | Hunter Haugen <hunter@puppetlabs.com> | 2014-05-07 09:53:30 -0700 |
---|---|---|
committer | Hunter Haugen <hunter@puppetlabs.com> | 2014-05-07 09:53:30 -0700 |
commit | 176ff3abdc1e63de02d6d8d9cb2d70c09f7b7766 (patch) | |
tree | c9b45412f856675d7aa2034ebe8484ed0004e294 /spec/monkey_patches | |
parent | e962b9553b8d79b36faa90ef6e002649820208a3 (diff) | |
parent | 09f892023c726eabaa85a308c2dbffd8e8b71fbd (diff) | |
download | puppet-stdlib-176ff3abdc1e63de02d6d8d9cb2d70c09f7b7766.tar.gz puppet-stdlib-176ff3abdc1e63de02d6d8d9cb2d70c09f7b7766.tar.bz2 |
Merge pull request #248 from averi/master
Add the missing shebangs and fix the wrong ones
Diffstat (limited to 'spec/monkey_patches')
-rwxr-xr-x | spec/monkey_patches/alias_should_to_must.rb | 1 | ||||
-rwxr-xr-x | spec/monkey_patches/publicize_methods.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/spec/monkey_patches/alias_should_to_must.rb b/spec/monkey_patches/alias_should_to_must.rb index 1a11117..505e240 100755 --- a/spec/monkey_patches/alias_should_to_must.rb +++ b/spec/monkey_patches/alias_should_to_must.rb @@ -1,3 +1,4 @@ +#! /usr/bin/env ruby -S rspec require 'rspec' class Object diff --git a/spec/monkey_patches/publicize_methods.rb b/spec/monkey_patches/publicize_methods.rb index f3a1abf..3ae59f9 100755 --- a/spec/monkey_patches/publicize_methods.rb +++ b/spec/monkey_patches/publicize_methods.rb @@ -1,3 +1,4 @@ +#! /usr/bin/env ruby -S rspec # Some monkey-patching to allow us to test private methods. class Class def publicize_methods(*methods) |