tangany 0.0.2 → 0.0.3

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: fc14c5cb9206bc4b59e4f985c1415d03527f33ba61b4e6477c008245d0b8226a
4
- data.tar.gz: c2ddb84c20cc66e450be0044d556747b62176becd1edc3d77a21ca01f474c4b0
3
+ metadata.gz: 8494b7c73b8b81a74f65f763c5d1875c60cc41515bee6caf6655f7e187752963
4
+ data.tar.gz: deb5d9d7e13d9fd6f765ef4ed15727e8f3e8840ed3bdd7fb60f1eb7f2b98bf82
5
5
  SHA512:
6
- metadata.gz: 2e3442b1169b82f6febfdeaca8b219e8fe71869990108134707b290e0d8b613582445ec88acf5e9a96bde7795cd003635e5581637dfb1ffc4ffe928131f167a2
7
- data.tar.gz: c9361bd62deb1cf57151de66f724a7a83e26d0733127505d29423cd131bdb8d30b599e2a2920eb64e9435e0ebe857433ebe1716a3e291006bf657e68579916cf
6
+ metadata.gz: bd198f5dce065c4c7915743d0624913f5637538f0120e7262066cd28cc1a26754418f1c59ca13e09b881727ec0a0ccc297bf94613570644bc2a676d02ac19f7f
7
+ data.tar.gz: 35bda8d7bc3825a5934bcef0841c322dd23966ad02f179960c6a626a19425dc0b7cfcc511538d83546d00eb373edd37cb9d9f8582369f73be1a662151c35c219
data/CHANGELOG.md CHANGED
@@ -1,11 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.3 - 2023-01-16
4
+
5
+ ## What's Changed
6
+
7
+ - Better logging in test live by @panteo in https://github.com/bitbond/tangany-ruby/pull/6
8
+
9
+ **Full Changelog**: https://github.com/bitbond/tangany-ruby/compare/v0.0.2...v0.0.3
10
+
3
11
  ## 0.0.2 - 2022-12-02
4
12
 
5
13
  ### What's Changed
6
14
 
7
15
  - README badges and gemspec links by @panteo in https://github.com/bitbond/tangany-ruby/pull/5
8
16
 
17
+ **Full Changelog**: https://github.com/bitbond/tangany-ruby/compare/v0.0.1...v0.0.2
18
+
9
19
  ## 0.0.1 - 2022-12-01
10
20
 
11
21
  ### What's Changed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tangany (0.0.2)
4
+ tangany (0.0.3)
5
5
  activesupport (>= 6.0, < 8.0.0)
6
6
  dry-struct (>= 1.6, < 2.0.0)
7
7
  dry-validation (>= 1.10, < 2.0.0)
data/SECURITY.md ADDED
@@ -0,0 +1,8 @@
1
+ # Security Policy
2
+
3
+ ### Reporting a vulnerability
4
+
5
+ Please do not open GitHub issues or pull requests - this makes the problem immediately visible to everyone, including malicious actors.
6
+
7
+ Security issues in this open-source project can be safely reported to [service@bitbond.com](mailto:service@bitbond.com).
8
+ Bitbond's security team will triage your report and respond according to its impact.
data/bin/test-live CHANGED
@@ -148,7 +148,7 @@ begin
148
148
 
149
149
  puts "== Tests run... ".ljust(80, "=")
150
150
  rescue => e
151
- puts e.message
151
+ puts " -> \e[31m#{e.message}\e[0m"
152
152
  exit 1
153
153
  ensure
154
154
  puts
@@ -2,6 +2,7 @@ module Tangany
2
2
  module Customers
3
3
  class NaturalPersonsResource < Resource
4
4
  BASE_PATH = "entities/natural-persons"
5
+
5
6
  def create(**params)
6
7
  NaturalPerson.new(post_request(BASE_PATH, body: sanitize_params!(params).to_json).body)
7
8
  end
@@ -1,3 +1,3 @@
1
1
  module Tangany
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tangany
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bitbond
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-02 00:00:00.000000000 Z
11
+ date: 2023-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -112,6 +112,7 @@ files:
112
112
  - LICENSE.txt
113
113
  - README.md
114
114
  - Rakefile
115
+ - SECURITY.md
115
116
  - bin/console
116
117
  - bin/setup
117
118
  - bin/test-live