1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00

Mitigates Style/SingleSpaceBeforeFirstArg

This commit is contained in:
Thomas Nys 2015-04-18 12:30:52 +02:00
parent 2637caa582
commit b24fe1781b

View file

@ -14,7 +14,7 @@ my_logger.info "It can be used also on a custom class."
class Google
include HTTParty
logger ::Logger.new "httparty.log"
logger ::Logger.new "httparty.log"
end
Google.get "http://google.com"
@ -31,7 +31,7 @@ my_logger.info '*' * 70
my_logger.info "These configs are also available on custom classes."
class Google
include HTTParty
logger ::Logger.new("httparty.log"), :debug, :curl
logger ::Logger.new("httparty.log"), :debug, :curl
end
Google.get "http://google.com"