yoti 1.3.0 → 1.3.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
- data/README.md +15 -7
- data/lib/yoti/protobuf/v3/attrpubapi/list_pb.rb +1 -1
- data/lib/yoti/protobuf/v3/attrpubapi/signing_pb.rb +1 -1
- data/lib/yoti/version.rb +1 -1
- 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: 6e5b60947899ea06491577de1490e6d380779ee74a3fd31dea4a794cd23ab775
|
|
4
|
+
data.tar.gz: 9838261227d5aa667b9c91be67ad0002a87df137fdebd5505dcf2bcd5f912993
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5ccf44832dda707634563ace8d07a19653c19588582b3936ae71fda45ae7a181739e6faf2df2e1cf1da17c9048afb4fa78fa1ff33c6bc1cff05a3a0e8621d9b
|
|
7
|
+
data.tar.gz: 1912aaf2ae74af86ce3457037b79f59683fcc1bf6b8707e97f024c2b4fdc8d7a1d0f7439d7fb72e917eca942d71adbf747fcc938cc56be13d509ad0eaf58ad08
|
data/README.md
CHANGED
|
@@ -269,10 +269,14 @@ The examples can be found in the [examples folder](examples).
|
|
|
269
269
|
1. Set the scenario callback URL to `/profile`
|
|
270
270
|
1. Rename the [.env.example](examples/rails/.env.example) file to `.env`
|
|
271
271
|
1. Fill in the environment variables in this file with the ones specific to your application (mentioned in the [Configuration](#configuration) section)
|
|
272
|
-
1. Install the dependencies
|
|
273
|
-
|
|
272
|
+
1. Install the dependencies by running the following commands
|
|
273
|
+
```ruby
|
|
274
|
+
$ bundle install
|
|
275
|
+
$ gem install foreman # We are doing this as it's not recommended to include foreman in your Gemfile
|
|
276
|
+
```
|
|
277
|
+
1. Start the server `foreman start`
|
|
274
278
|
|
|
275
|
-
Visiting `
|
|
279
|
+
Visiting `https://localhost:3001/` should show a Yoti Connect button
|
|
276
280
|
|
|
277
281
|
### Sinatra
|
|
278
282
|
|
|
@@ -281,10 +285,14 @@ Visiting `http://localhost:3000/` should show a Yoti Connect button
|
|
|
281
285
|
1. Set the scenario callback URL to `/profile`
|
|
282
286
|
1. Rename the [.env.example](examples/sinatra/.env.example) file to `.env`
|
|
283
287
|
1. Fill in the environment variables in this file with the ones specific to your application (mentioned in the [Configuration](#configuration) section)
|
|
284
|
-
1. Install the dependencies
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
+
1. Install the dependencies by running the following commands
|
|
289
|
+
```ruby
|
|
290
|
+
$ bundle install
|
|
291
|
+
$ gem install foreman # We are doing this as it's not recommended to include foreman in your Gemfile
|
|
292
|
+
```
|
|
293
|
+
1. Start the server `foreman start`
|
|
294
|
+
|
|
295
|
+
Visiting `https://localhost:4567/` should show a Yoti Connect button
|
|
288
296
|
|
|
289
297
|
### AML Check
|
|
290
298
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
require 'google/protobuf'
|
|
5
5
|
|
|
6
|
-
require_relative '
|
|
6
|
+
require_relative 'attribute_pb'
|
|
7
7
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
8
8
|
add_message "Yoti.Protobuf.attrpubapi_v3.AttributeAndId" do
|
|
9
9
|
optional :attribute, :message, 1, "Yoti.Protobuf.attrpubapi_v3.Attribute"
|
data/lib/yoti/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yoti
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastian Zaremba
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: protobuf
|