auth-lh 0.10.2 → 0.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 55be054aecabf5e5dea74d0dbe2204a55177c3a5
4
- data.tar.gz: ecb7c2121379be10bc3d77bab2656536c5e774d9
3
+ metadata.gz: 30b72f00e8ab8602f4a805770f88e4d5c2581b18
4
+ data.tar.gz: b23ffde1ce6aa622e5cdfff168f7c396104b4673
5
5
  SHA512:
6
- metadata.gz: 50251f51868685ec02a1010c03d984b0f0812d04e32deb49745fac5edc0f4877bae43c121c1a4ac2e962e4f93d4feba84470e15045bf6ae976f0a74632a290e1
7
- data.tar.gz: 02e87297a93138cd90fa43b56529332307a682b98c466632ccf4eb58c8ede10026737756aa3f256520d2bb8772e6ba6ad45d3aaf4bbdbfb5740bf37d7b0f9449
6
+ metadata.gz: d8b05bae6bddd22e9f0b5ecc47c473455bb60470b6cf6c1674638e86a15d040ff1a3856d5d69b5bf1fbc95e68a55134ec0647286af7fc0b5c98061149254495a
7
+ data.tar.gz: addeec64106d3fcb6a7cb2d0bd1d436870a3779a8bb8bfdcb8cbc2281ae5a1cbb7f334f2dc7a309143de03c7685539f6661bca99de24a752cc326c4a94af4977
data/CHANGELOG.md CHANGED
@@ -141,3 +141,7 @@
141
141
  ## v0.10.2
142
142
 
143
143
  * Bugfixed method modifier for put request.
144
+
145
+ ## v0.10.3
146
+
147
+ * Bugfixed mistyped variable on put request method.
@@ -1,5 +1,5 @@
1
1
  module Auth
2
2
  module Lh
3
- VERSION = "0.10.2"
3
+ VERSION = "0.10.3"
4
4
  end
5
5
  end
data/lib/auth_lh.rb CHANGED
@@ -94,8 +94,8 @@ module AuthLh
94
94
  end
95
95
  end
96
96
 
97
- def self.put_request(action, params={}, headers={})
98
- response = RestClient.put("#{@endpoint_url}#{action}", params, headers.merge(auth_headers))
97
+ def self.put_request(action, params={})
98
+ response = RestClient.put("#{@endpoint}#{action}", params, auth_headers)
99
99
 
100
100
  if response.body == 'null'
101
101
  nil
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auth-lh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ version: 0.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matias Hick