lib/billogram/client.rb in billogram-0.6.1 vs lib/billogram/client.rb in billogram-0.6.2
- old
+ new
@@ -7,9 +7,9 @@
delegate [:get, :post, :put, :delete] => self
format :json
def initialize(username, password, base_uri)
- self.class.default_options.merge!(base_uri: "#{base_uri}", basic_auth: {username: username, password: password})
+ self.class.default_options.merge!(base_uri: base_uri, basic_auth: {username: username, password: password})
end
end
end