fusionauth_client 1.51.0 → 1.52.0
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/.github/CODEOWNERS +4 -0
- data/.github/workflows/deploy.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/build.savant +1 -1
- data/doc/FusionAuth/FusionAuthClient.html +951 -834
- data/doc/created.rid +2 -2
- data/doc/js/navigation.js.gz +0 -0
- data/doc/js/search_index.js +1 -1
- data/doc/js/search_index.js.gz +0 -0
- data/doc/js/searcher.js.gz +0 -0
- data/doc/table_of_contents.html +15 -0
- data/fusionauth-ruby-client.iml +5 -1
- data/fusionauth_client.gemspec +1 -1
- data/lib/fusionauth/fusionauth_client.rb +747 -718
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bad49c0458dd31ccf7f81b5d1cd9f1e4230b8378c3ed0b2b1b0f0cf006b028e
|
4
|
+
data.tar.gz: 82699e96462bc78944ae48137c7b4bc80763303082e94ad0f58c26deaa8fc843
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e692e0e35951c4268f6f19d930b46a1c5a1f4e2371588a003f4dd1b8d56679ef9f48ec3b931408cb819464c9c612943d8cc319238da53af3229f19d359a6ada4
|
7
|
+
data.tar.gz: 0fa182e50cf223190d0ec881ea4ed0bf1dff17237ff07c6a13e536c712effb4b9cf332f10fd822670f1008eef7a9c73789cfdf40254f30a93acaff406e915f90
|
data/.github/CODEOWNERS
ADDED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Run locally with act:
|
2
2
|
#
|
3
3
|
# act pull_request [--input command=[command]] \
|
4
|
-
# --platform fusionauth-
|
5
|
-
# --workflows ./.github/workflows/
|
4
|
+
# --platform fusionauth-standard=[ecr-repo-name]/fusionauth-standard:latest] \
|
5
|
+
# --workflows ./.github/workflows/deploy.yaml \
|
6
6
|
# --env-file <(aws configure export-credentials --profile [aws-profile] --format env)
|
7
7
|
|
8
8
|
name: Deploy
|
@@ -33,7 +33,7 @@ jobs:
|
|
33
33
|
github.event_name == 'pull_request' ||
|
34
34
|
github.event_name == 'push' ||
|
35
35
|
github.event_name == 'workflow_dispatch' && inputs.command == 'build'
|
36
|
-
runs-on: fusionauth-
|
36
|
+
runs-on: fusionauth-standard
|
37
37
|
steps:
|
38
38
|
- name: checkout
|
39
39
|
uses: actions/checkout@v4
|
@@ -46,7 +46,7 @@ jobs:
|
|
46
46
|
if: |
|
47
47
|
github.event_name == 'workflow_dispatch' &&
|
48
48
|
(inputs.command == 'release' || inputs.command == 'publish')
|
49
|
-
runs-on: fusionauth-
|
49
|
+
runs-on: fusionauth-standard
|
50
50
|
steps:
|
51
51
|
- name: checkout
|
52
52
|
uses: actions/checkout@v4
|
data/Gemfile.lock
CHANGED
data/build.savant
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
*/
|
16
16
|
|
17
17
|
pubVersion = ""
|
18
|
-
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.
|
18
|
+
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.52.0", licenses: ["ApacheV2_0"]) {
|
19
19
|
workflow {
|
20
20
|
fetch {
|
21
21
|
cache()
|