widgets_api_client 1.0.0 → 1.0.1

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: 81fb7ee129dfb3c49a93195c25b02360d8c7cbce
4
- data.tar.gz: 4fbe7b40c3a518168d0cd45dfd8cb901b5ead842
3
+ metadata.gz: 9dc8c7f5d8630468485c6518209a841f13cec174
4
+ data.tar.gz: 6cd9bc9678f04df2cbfd865daebe02344ae9c1be
5
5
  SHA512:
6
- metadata.gz: de3e873a28ca1cd1ebe8c525d5f52b8d0f5928f8455337553044a95f82a1cab2aa6eee437aa8293c8c75d2609553f64e823fae28ac31318fd9fde60c97732e28
7
- data.tar.gz: cd70580d48619263902e2e07970c4b8c4f26939ac454cdca0d4fc0ca6761dad2f285a9e15d3615d3f71dccf5cafe4dd97f343593895c2c6caa3098d718a63bad
6
+ metadata.gz: 5297223cfe3c3ce7666a3687f1a5998e06292285771b23069c59f7566c2876b49d26857a45f041d5dccb1e2d9e922d4509771090e601a6ae536277a4bd925fab
7
+ data.tar.gz: c81493f45943dcc0241c456a673b7f3ab68521b99f9b439b99fdc177c12548b9dc73357da248b3912c6e9988cae44edbae7551f2e0df7331bf6f105452969edd
@@ -15,7 +15,6 @@ class AuthenticationService
15
15
  #
16
16
  def self.create_authentication(auth_data)
17
17
  auth_payload = Authentication.get_payload_with_client_info(auth_data)
18
- puts auth_payload
19
18
  RestClient::Request.execute(method: :post,
20
19
  url: ApplicationConfig.get_url('create_authentication_path'),
21
20
  payload: auth_payload,
@@ -49,7 +48,6 @@ class AuthenticationService
49
48
  #
50
49
  def self.revoke_authentication_token(auth_data, bearer_token)
51
50
  auth_payload = Authentication.get_payload(auth_data)
52
- puts auth_payload
53
51
  RestClient::Request.execute(method: :post,
54
52
  url: ApplicationConfig.get_url('revoke_authentication_path'),
55
53
  payload: auth_payload,
@@ -15,7 +15,6 @@ class UserService
15
15
  #
16
16
  def self.create_user(user)
17
17
  create_user_payload = User.get_payload_with_client_info(user)
18
- puts create_user_payload
19
18
  RestClient::Request.execute(method: :post,
20
19
  url: ApplicationConfig.get_url('create_user_path'),
21
20
  payload: create_user_payload,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: widgets_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sachin Murthy