lib/hanzo/modules/install.rb in hanzo-0.6.2 vs lib/hanzo/modules/install.rb in hanzo-1.0.0
- old
+ new
@@ -16,10 +16,10 @@
def initialize_cli
initialize_help && return if @type.nil?
method = "install_#{@type}"
- if self.respond_to?(method)
+ if respond_to?(method)
send(method)
else
initialize_help
end
end