trusona 0.16.0 → 0.18.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +13 -0
- data/lib/trusona/version.rb +1 -1
- data/release-gem +4 -1
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2962edcbe28c3b5253ce9df7d83719b75f7490594fcc8ecda888ad265dab2b7b
|
|
4
|
+
data.tar.gz: 3a51855d139c15062405256788990658a4f8ea68720b968787f87c9d5d1e0ec6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bfa2bfa15aff70f753afc08ec6eedd9bc63b1e5be96ddb62ba0b4d2e0d18b4de37e64728c71d5caf3a19279621a0709e1df975105b13809f657250c9cac31c7a
|
|
7
|
+
data.tar.gz: bf484f403d5dbeac72993b466a838dcf4704204dc4658aa540531f939f60928cac16503c9851689250d5080af564162a449fcb5bd1b411e909c8ddf9d8b41bc3
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/README.md
CHANGED
|
@@ -11,11 +11,24 @@ The Trusona SDK requires Ruby version 2.4.0 or higher.
|
|
|
11
11
|
|
|
12
12
|
## Examples
|
|
13
13
|
|
|
14
|
+
* [Installation](#installation)
|
|
14
15
|
* [Configuration](#configuration)
|
|
15
16
|
* [Device and User Bindings](#device-and-user-bindings)
|
|
16
17
|
* [Trusonafications](#trusonafications)
|
|
17
18
|
* [Devices](#devices)
|
|
18
19
|
|
|
20
|
+
### Installation
|
|
21
|
+
|
|
22
|
+
The recommended way to add the Trusona gem to your project is to use `bundler`. To add
|
|
23
|
+
Trusona to your project, add the following line to your `Gemfile`.
|
|
24
|
+
|
|
25
|
+
`gem 'trusona'`
|
|
26
|
+
|
|
27
|
+
After adding the line to your `Gemfile`, running `bundle install` will install it.
|
|
28
|
+
|
|
29
|
+
The Trusona gem uses semantic versioning, so it is generally a good idea to lock in the
|
|
30
|
+
major version in your `Gemfile` before deploying to production.
|
|
31
|
+
|
|
19
32
|
### Configuration
|
|
20
33
|
|
|
21
34
|
Configuring the Trusona gem is easy. We recommend using environment variables and a tool like [dotenv](https://github.com/bkeepers/dotenv) for managing those environment variables.
|
data/lib/trusona/version.rb
CHANGED
data/release-gem
CHANGED
|
@@ -14,4 +14,7 @@ gem build trusona.gemspec
|
|
|
14
14
|
|
|
15
15
|
# push the gem to artifactory
|
|
16
16
|
gem push trusona-*.gem --host https://trusona.jfrog.io/trusona/api/gems/trusona-rubygems
|
|
17
|
-
|
|
17
|
+
|
|
18
|
+
# push to rubygems
|
|
19
|
+
echo -e "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}" > ~/.gem/credentials
|
|
20
|
+
gem push trusona-*.gem
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trusona
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.18.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Trusona
|
|
@@ -326,7 +326,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
326
326
|
version: '0'
|
|
327
327
|
requirements: []
|
|
328
328
|
rubyforge_project:
|
|
329
|
-
rubygems_version: 2.7.
|
|
329
|
+
rubygems_version: 2.7.7
|
|
330
330
|
signing_key:
|
|
331
331
|
specification_version: 4
|
|
332
332
|
summary: Trusona REST API wrapper
|
metadata.gz.sig
CHANGED
|
Binary file
|