The `headers` param could be made optional as well, then you wouldn't need to add an empty hash for the calls in `do_head_request` and `do_delete_request`.
```rb
auth_headers_for(http_method, url, headers = {}, data = nil)
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
closes #3
Looks all good to me 👍
@@ -3,3 +2,3 @@WORKDIR /liquorcabinetENV RACK_ENV=stagingENV RACK_ENV=productionIs this change intentional?
Yes, I think default should be production.
@@ -89,3 +78,1 @@def hmac(key, value)OpenSSL::HMAC.digest(OpenSSL::Digest.new('sha1'), key, value)def auth_headers_for(http_method, url, headers, data = nil)The
headersparam could be made optional as well, then you wouldn't need to add an empty hash for the calls indo_head_requestanddo_delete_request.