auth-lh 0.0.5 → 0.0.6

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: ba7898013ebad01d0b9777eb224afb8891380f0e
4
- data.tar.gz: 29610f05e30983123dab333e1cf8ef819fface2e
3
+ metadata.gz: 060d683639b32bff673542cf158476c58312de4d
4
+ data.tar.gz: e6b32af3891f6718f48c066f4f442b75ebdef0bc
5
5
  SHA512:
6
- metadata.gz: f3ba911cb7b7ca97a559c1db0eb405f9c805b5501163ba9c0649d74bcf371e4c493188e4be954aab0b060da6d7c2cd246c46481ba5935ab5dd87550bdaecea7a
7
- data.tar.gz: 2fa3915eaf2a7394097b698f930aedb3f870eb95101072f411efc96bb97b3397579c63a4fae193fd7397816d1dde06194ff203ff69465b6de4d1553ac502b1df
6
+ metadata.gz: 68aafdbb8d013885b653a124228cfeb6f8104c11c938357bdd59ba4c77f420284bb25a129406703ecf1f59d45b43e531f601265b5b607491d5079656da7c285f
7
+ data.tar.gz: 901ab0bfba35a21a7028c9d85298374591250466e1061ae42fa3689a5b3e445385faac8369d041d3590edffcc4616ea1b4a1891d302bb978d591175bcb8cb94c
data/CHANGELOG.md CHANGED
@@ -17,3 +17,7 @@
17
17
  ## v0.0.5
18
18
 
19
19
  * Bugfix: access token not being set in configuration
20
+
21
+ ## v0.0.6
22
+
23
+ * Bugfix: api method url mistyped
data/lib/auth/lh/api.rb CHANGED
@@ -32,7 +32,7 @@ module Auth
32
32
  end
33
33
 
34
34
  def get_user(code_or_login)
35
- User.new(get_request("/api/user/#{code_or_login}"))
35
+ User.new(get_request("/api/users/#{code_or_login}"))
36
36
  end
37
37
 
38
38
  def get_users(filters={})
@@ -1,5 +1,5 @@
1
1
  module Auth
2
2
  module Lh
3
- VERSION = "0.0.5"
3
+ VERSION = "0.0.6"
4
4
  end
5
5
  end
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.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matias Hick