lib/glare/client.rb in glare-0.1.1 vs lib/glare/client.rb in glare-0.1.2

- old
+ new

@@ -4,10 +4,9 @@ class Client BASE_URL = 'https://api.cloudflare.com/client/v4'.freeze def initialize(email, auth_key) @headers = { - 'Content-Type' => 'application/json', 'X-Auth-Email' => email, 'X-Auth-Key' => auth_key } @http = JSONClient.new @http.debug_dev = STDERR if ENV['CF_DEBUG']