fusionauth_client 1.30.0 → 1.30.2
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 +4 -4
- data/Gemfile.lock +1 -1
- data/build.savant +1 -1
- data/fusionauth_client.gemspec +1 -1
- data/lib/fusionauth/fusionauth_client.rb +10 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08c2748a92238ea20ed6af4dda486c2f55be54444e31a042c54ef084bddc8a9f'
|
|
4
|
+
data.tar.gz: caad01f4521670c30e85ca00507ca3ca6325d3eceeb3487a3c1dd07ade32a423
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 632c231641cb7c6b82e29a7581f7b25051bfe1aff62026ee09ddb07b63ddef3537a477d90bc877f1ec4a2dc9184c27ec6d9fab1f7cf5126174644d5da7bcf0a2
|
|
7
|
+
data.tar.gz: aae67ac73b580d6924d9aa80395311431898554585b97a1bb763c5310b68fc8d289328fd89cdfa2561980f2dfbc8afcbe4d34f8ba191d41e5c9c0d6f50b4c0e9
|
data/Gemfile.lock
CHANGED
data/build.savant
CHANGED
|
@@ -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.30.
|
|
19
|
+
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.30.2", licenses: ["ApacheV2_0"]) {
|
|
20
20
|
workflow {
|
|
21
21
|
standard()
|
|
22
22
|
}
|
data/fusionauth_client.gemspec
CHANGED
|
@@ -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.30.
|
|
7
|
+
spec.version = '1.30.2'
|
|
8
8
|
spec.authors = ['Brian Pontarelli', 'Daniel DeGroff']
|
|
9
9
|
spec.email = %w(brian@fusionauth.io daniel@fusionauth.io)
|
|
10
10
|
|
|
@@ -2694,6 +2694,16 @@ module FusionAuth
|
|
|
2694
2694
|
.go()
|
|
2695
2695
|
end
|
|
2696
2696
|
|
|
2697
|
+
#
|
|
2698
|
+
# Retrieves the FusionAuth Reactor metrics.
|
|
2699
|
+
#
|
|
2700
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
|
2701
|
+
def retrieve_reactor_metrics()
|
|
2702
|
+
start.uri('/api/reactor/metrics')
|
|
2703
|
+
.get()
|
|
2704
|
+
.go()
|
|
2705
|
+
end
|
|
2706
|
+
|
|
2697
2707
|
#
|
|
2698
2708
|
# Retrieves the FusionAuth Reactor status.
|
|
2699
2709
|
#
|
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.30.
|
|
4
|
+
version: 1.30.2
|
|
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: 2021-
|
|
12
|
+
date: 2021-10-13 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.
|