incognia_api 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4670f0fda3487b76490802caef76aa02c9ef037c552d4fab1e970871d07498f
4
- data.tar.gz: b8286fe8ba8130ad7512bc8bf2acb065409195ed326a72c9c0a4fb27b9e7cfb0
3
+ metadata.gz: c06d3f1dee05fda7643ec2f4fe90cc9701d268bf403dbffddb90e2a9f44fe78d
4
+ data.tar.gz: 7f40ea03ef4b6fccc3fe22b59ef0bec2d8418357c497facb8f07c505905e2617
5
5
  SHA512:
6
- metadata.gz: 191d5b1ee6963347a37a752bedda18bd293a04b7adc245c037b67e5ac6f08e629d36dbe5701c5bb13b6f5e180a2d7e6153b3913da730a2418fcd66d972eb866e
7
- data.tar.gz: 118a7ea43a3f35709383c24c1b5d372b92152fea8041894666fdeb8839c2b6c472b8ced28bb3b654bbbf9ecd2fa7b6367d37174acc1f434508070937880420c9
6
+ metadata.gz: cdd6f1391a78d3ab2fd9989415056d9d54dc4b85fad42260b5ec1e8460eb5bc4094baa30c1588f5224a06e24d2ce9cd734dd590fb851f46703b2e7c3bdfddf3e
7
+ data.tar.gz: 8e706e0ec640801e8df377f2c84366b052727623e054b53f8fd7150a98128a027385a11707dfc1ffe6907eb9ed681ee5956feedc29e62646b595eaaa2bf92cf8
data/CHANGELOG.md CHANGED
@@ -1,9 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.4.0] - 2023-04-14
4
+
5
+ - Rename main filename to match the gem name
6
+
3
7
  ## [0.3.1] - 2023-01-24
4
8
 
5
- - Allows optional params on #register_signup
6
- - Adds Reset feedback event
9
+ - Allow optional params on #register_signup
10
+ - Add Reset feedback event
7
11
 
8
12
  ## [0.3.0] - 2022-05-06
9
13
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- incognia_api (0.3.1)
4
+ incognia_api (0.4.0)
5
5
  faraday
6
6
  faraday_middleware
7
7
 
@@ -39,7 +39,7 @@ GEM
39
39
  faraday_middleware (1.2.0)
40
40
  faraday (~> 1.0)
41
41
  hashdiff (1.0.1)
42
- multipart-post (2.2.3)
42
+ multipart-post (2.3.0)
43
43
  public_suffix (4.0.6)
44
44
  rake (13.0.3)
45
45
  rexml (3.2.5)
data/README.md CHANGED
@@ -148,7 +148,7 @@ For custom fraud, set the value of `event` with the corresponding code:
148
148
 
149
149
  ```ruby
150
150
  success = api.register_feedback(
151
- event: 'custom_fraud_name'
151
+ event: 'custom_fraud_name',
152
152
  timestamp: timestamp,
153
153
  account_id: account_id,
154
154
  installation_id: installation_id
data/bin/console CHANGED
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require "bundler/setup"
5
- require "incognia"
5
+ require "incognia_api"
6
6
 
7
7
  # You can add fixtures and/or initialization code here to make experimenting
8
8
  # with your gem easier. You can also use a different console, if you like.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "lib/incognia/version"
3
+ require_relative "lib/incognia_api/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "incognia_api"
@@ -10,12 +10,12 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = "Official Ruby lib for communicating with Incognia API"
12
12
  spec.description = "Official Ruby lib for communicating with Incognia API"
13
- spec.homepage = "https://github.com/inloco/incognia-api-ruby"
13
+ spec.homepage = "https://github.com/inloco/incognia-ruby"
14
14
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
15
15
 
16
16
  spec.metadata["homepage_uri"] = spec.homepage
17
- spec.metadata["source_code_uri"] = "https://github.com/inloco/incognia-api-ruby"
18
- spec.metadata["changelog_uri"] = "https://github.com/inloco/incognia-api-ruby/blob/master/"
17
+ spec.metadata["source_code_uri"] = "https://github.com/inloco/incognia-ruby"
18
+ spec.metadata["changelog_uri"] = "https://github.com/inloco/incognia-ruby/blob/master/"
19
19
 
20
20
  # Specify which files should be added to the gem when it is released.
21
21
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Incognia
4
- VERSION = "0.3.1"
4
+ VERSION = "0.4.0"
5
5
  end
@@ -1,17 +1,17 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "incognia/version"
4
- require_relative "incognia/client"
5
- require_relative "incognia/util"
6
- require_relative "incognia/address"
7
- require_relative "incognia/api"
8
-
9
- require_relative "incognia/resources/api_resource"
10
- require_relative "incognia/resources/signup_assessment"
11
- require_relative "incognia/resources/login_assessment"
12
- require_relative "incognia/resources/credentials"
13
-
14
- require_relative "incognia/constants/feedback_event"
3
+ require_relative "incognia_api/version"
4
+ require_relative "incognia_api/client"
5
+ require_relative "incognia_api/util"
6
+ require_relative "incognia_api/address"
7
+ require_relative "incognia_api/api"
8
+
9
+ require_relative "incognia_api/resources/api_resource"
10
+ require_relative "incognia_api/resources/signup_assessment"
11
+ require_relative "incognia_api/resources/login_assessment"
12
+ require_relative "incognia_api/resources/credentials"
13
+
14
+ require_relative "incognia_api/constants/feedback_event"
15
15
 
16
16
  module Incognia
17
17
  class APIError < StandardError
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: incognia_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guilherme Cavalcanti
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-24 00:00:00.000000000 Z
11
+ date: 2023-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -58,25 +58,25 @@ files:
58
58
  - bin/console
59
59
  - bin/setup
60
60
  - fixtures/vcr_cassettes/token.yml
61
- - incognia.gemspec
62
- - lib/incognia.rb
63
- - lib/incognia/address.rb
64
- - lib/incognia/api.rb
65
- - lib/incognia/client.rb
66
- - lib/incognia/constants/feedback_event.rb
67
- - lib/incognia/resources/api_resource.rb
68
- - lib/incognia/resources/credentials.rb
69
- - lib/incognia/resources/login_assessment.rb
70
- - lib/incognia/resources/signup_assessment.rb
71
- - lib/incognia/util.rb
72
- - lib/incognia/version.rb
73
- homepage: https://github.com/inloco/incognia-api-ruby
61
+ - incognia_api.gemspec
62
+ - lib/incognia_api.rb
63
+ - lib/incognia_api/address.rb
64
+ - lib/incognia_api/api.rb
65
+ - lib/incognia_api/client.rb
66
+ - lib/incognia_api/constants/feedback_event.rb
67
+ - lib/incognia_api/resources/api_resource.rb
68
+ - lib/incognia_api/resources/credentials.rb
69
+ - lib/incognia_api/resources/login_assessment.rb
70
+ - lib/incognia_api/resources/signup_assessment.rb
71
+ - lib/incognia_api/util.rb
72
+ - lib/incognia_api/version.rb
73
+ homepage: https://github.com/inloco/incognia-ruby
74
74
  licenses: []
75
75
  metadata:
76
- homepage_uri: https://github.com/inloco/incognia-api-ruby
77
- source_code_uri: https://github.com/inloco/incognia-api-ruby
78
- changelog_uri: https://github.com/inloco/incognia-api-ruby/blob/master/
79
- post_install_message:
76
+ homepage_uri: https://github.com/inloco/incognia-ruby
77
+ source_code_uri: https://github.com/inloco/incognia-ruby
78
+ changelog_uri: https://github.com/inloco/incognia-ruby/blob/master/
79
+ post_install_message:
80
80
  rdoc_options: []
81
81
  require_paths:
82
82
  - lib
@@ -91,8 +91,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  - !ruby/object:Gem::Version
92
92
  version: '0'
93
93
  requirements: []
94
- rubygems_version: 3.1.4
95
- signing_key:
94
+ rubygems_version: 3.1.6
95
+ signing_key:
96
96
  specification_version: 4
97
97
  summary: Official Ruby lib for communicating with Incognia API
98
98
  test_files: []
File without changes
File without changes
File without changes
File without changes