lib/cucumber/chef/provider.rb in cucumber-chef-2.1.0.rc.3 vs lib/cucumber/chef/provider.rb in cucumber-chef-2.1.0.rc.4
- old
+ new
@@ -46,15 +46,15 @@
end
################################################################################
def chef_server_webui
- "http://#{ip}:4040/"
+ "http://#{ip}:4040"
end
def chef_server_api
- "http://#{ip}:4000/"
+ "http://#{ip}:4000"
end
def status
if exists?
@@ -88,10 +88,10 @@
def method_missing(method_name, *method_args)
if Cucumber::Chef::Provider::PROXY_METHODS.include?(method_name.to_s)
result = @provider.send(method_name.to_sym, *method_args)
splat = [method_name, *method_args].flatten.compact
- Cucumber::Chef.logger.debug { "provider: #{splat.inspect} -> #{result.inspect}" }
+ Cucumber::Chef.logger.debug { "Provider: #{splat.inspect}=#{result.inspect}" }
result
else
super(method_name, *method_args)
end
end