shadow_puppet 0.1.10 → 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/shadow_puppet +4 -1
- metadata +1 -1
data/bin/shadow_puppet
CHANGED
@@ -75,8 +75,11 @@ begin
|
|
75
75
|
|
76
76
|
require 'rubygems'
|
77
77
|
require 'shadow_puppet'
|
78
|
-
gem "activesupport"
|
79
78
|
require 'active_support/inflector'
|
79
|
+
require 'active_support/core_ext/string/inflections'
|
80
|
+
unless String.included_modules.include?(ActiveSupport::CoreExtensions::String::Inflections)
|
81
|
+
String.send :include, ActiveSupport::CoreExtensions::String::Inflections
|
82
|
+
end
|
80
83
|
require 'fileutils'
|
81
84
|
|
82
85
|
filename = ARGV[0]
|