lib/billogram/client.rb in billogram-0.6.5 vs lib/billogram/client.rb in billogram-0.6.6

- old
+ new

@@ -1,5 +1,7 @@ +# frozen_string_literal: true + module Billogram class Client include HTTParty extend Forwardable @@ -7,9 +9,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