fusionauth_client 1.12.0 → 1.12.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
- SHA256:
3
- metadata.gz: a8e45548586d094ba403e9176f6ee2148b2da6d689b626356811f4d6027b09d8
4
- data.tar.gz: e7525b7fa0e267ab052485626dda018c4a010f80e2b6a536cef33512267735f6
2
+ SHA1:
3
+ metadata.gz: 1fbf345bd6dfa92aabc56e1d41bd943c4f9d29a8
4
+ data.tar.gz: 5a3c635055797895094fd08eaefbdd8b86e8d777
5
5
  SHA512:
6
- metadata.gz: dc78da9e2353c443647b9e09609052f4470e98ebaa527776562dcb10d28bce1ca9cf8085fc95afc67edab16e6c35f719489e10e621476dd38f1c0365afe075c1
7
- data.tar.gz: 4143c112ae46fbb9fbbc790876b72d6c096a82d306e2938e43214ec5294ffd5fa77acea4ada58b19303506e5b3cf65374b4a8b9c8145ff447116e1fe2924ecea
6
+ metadata.gz: 8e1bed6603cff680c2d8f702130f584a1ba1b5bb025bd5d1c132f00b3d3765b72f1f1435ec4a83071736252e838f4525755dfd25999f13654e30f999217ceefc
7
+ data.tar.gz: 18bdf7ee22c0058c573b3a4a8a5e92ac69bce64b4e5cafd34a8ee4e09e43f0dde56198573a20da4e3a81301388854f8387cc110c799818a8e091e82120722a76
@@ -16,7 +16,7 @@
16
16
  savantVersion = "1.0.0"
17
17
 
18
18
  pubVersion = ""
19
- project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.12.0", licenses: ["ApacheV2_0"]) {
19
+ project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.12.1", licenses: ["ApacheV2_0"]) {
20
20
  workflow {
21
21
  standard()
22
22
  }
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'fusionauth_client'
7
- spec.version = '1.12.0'
7
+ spec.version = '1.12.1'
8
8
  spec.authors = ['Brian Pontarelli', 'Daniel DeGroff']
9
9
  spec.email = %w(brian@fusionauth.io daniel@fusionauth.io)
10
10
 
@@ -98,7 +98,7 @@ module FusionAuth
98
98
  # @return [FusionAuth::ClientResponse] The ClientResponse object.
99
99
  #
100
100
  def change_password(change_password_id, request)
101
- startAnonymous.uri('/api/user/change-password')
101
+ start.uri('/api/user/change-password')
102
102
  .url_segment(change_password_id)
103
103
  .body_handler(FusionAuth::JSONBodyHandler.new(request))
104
104
  .post()
@@ -808,7 +808,7 @@ module FusionAuth
808
808
  # @return [FusionAuth::ClientResponse] The ClientResponse object.
809
809
  #
810
810
  def forgot_password(request)
811
- startAnonymous.uri('/api/user/forgot-password')
811
+ start.uri('/api/user/forgot-password')
812
812
  .body_handler(FusionAuth::JSONBodyHandler.new(request))
813
813
  .post()
814
814
  .go()
@@ -1400,7 +1400,7 @@ module FusionAuth
1400
1400
  # @return [FusionAuth::ClientResponse] The ClientResponse object.
1401
1401
  #
1402
1402
  def resend_email_verification(email)
1403
- startAnonymous.uri('/api/user/verify-email')
1403
+ start.uri('/api/user/verify-email')
1404
1404
  .url_parameter('email', email)
1405
1405
  .put()
1406
1406
  .go()
@@ -1414,7 +1414,7 @@ module FusionAuth
1414
1414
  # @return [FusionAuth::ClientResponse] The ClientResponse object.
1415
1415
  #
1416
1416
  def resend_registration_verification(email, application_id)
1417
- startAnonymous.uri('/api/user/verify-registration')
1417
+ start.uri('/api/user/verify-registration')
1418
1418
  .url_parameter('email', email)
1419
1419
  .url_parameter('applicationId', application_id)
1420
1420
  .put()
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fusionauth_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Pontarelli
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2019-12-09 00:00:00.000000000 Z
12
+ date: 2019-12-11 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: This library contains the Ruby client library that helps you connect
15
15
  your application to FusionAuth.
@@ -51,7 +51,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
51
51
  - !ruby/object:Gem::Version
52
52
  version: '0'
53
53
  requirements: []
54
- rubygems_version: 3.0.2
54
+ rubyforge_project:
55
+ rubygems_version: 2.5.1
55
56
  signing_key:
56
57
  specification_version: 4
57
58
  summary: The Ruby client library for FusionAuth