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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d128d9ffcee98658286382a901ee16fe544be243b1e7907acf2bc439238881b
4
- data.tar.gz: 476f3130e46d8aa61084b838bafc112d8986ff65b35e9cc9cacef1321355ffdc
3
+ metadata.gz: 6e5b60947899ea06491577de1490e6d380779ee74a3fd31dea4a794cd23ab775
4
+ data.tar.gz: 9838261227d5aa667b9c91be67ad0002a87df137fdebd5505dcf2bcd5f912993
5
5
  SHA512:
6
- metadata.gz: b896c3b2e481570dc3eef74ccf2fe22b24aab97e36f7b4f1896d8336227f4ca6b248e3dc6577dda89870415128a69fed32dc83a770857b3d0c93e48ead3dd138
7
- data.tar.gz: 1d67d39257f8c6752ee3d8c957293e082a2d2b9d57b343ef93c863b38767e412a82ebbbb3f777a6d13367aeb7d019c960ff1ee277c04d6d6b838eb3872e5ebd1
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 with `bundle install`
273
- 1. Start the server `rails server`
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 `http://localhost:3000/` should show a Yoti Connect button
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 with `bundle install`
285
- 1. Start the server `ruby ./app.rb`
286
-
287
- Visiting `http://localhost:4567/` should show a Yoti Connect button
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 'Attribute_pb'
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"
@@ -3,7 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require_relative 'Attribute_pb'
6
+ require_relative 'attribute_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_message "Yoti.Protobuf.attrpubapi_v3.AttributeSigning" do
9
9
  optional :name, :string, 1
data/lib/yoti/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Yoti
2
2
  # @return [String] the gem's current version
3
- VERSION = '1.3.0'.freeze
3
+ VERSION = '1.3.1'.freeze
4
4
  end
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.0
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-08-21 00:00:00.000000000 Z
11
+ date: 2018-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: protobuf