tangany 0.0.1 → 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 +4 -4
- data/.simplecov +2 -0
- data/CHANGELOG.md +52 -2
- data/Gemfile.lock +1 -1
- data/README.md +13 -0
- data/Rakefile +4 -4
- data/SECURITY.md +8 -0
- data/bin/test-live +1 -1
- data/lib/ruby_critic/formatter/badge_formatter.rb +32 -0
- data/lib/simplecov/formatter/badge_formatter.rb +27 -0
- data/lib/tangany/customers/resources/natural_persons_resource.rb +1 -0
- data/lib/tangany/version.rb +1 -1
- metadata +11 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8494b7c73b8b81a74f65f763c5d1875c60cc41515bee6caf6655f7e187752963
|
4
|
+
data.tar.gz: deb5d9d7e13d9fd6f765ef4ed15727e8f3e8840ed3bdd7fb60f1eb7f2b98bf82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd198f5dce065c4c7915743d0624913f5637538f0120e7262066cd28cc1a26754418f1c59ca13e09b881727ec0a0ccc297bf94613570644bc2a676d02ac19f7f
|
7
|
+
data.tar.gz: 35bda8d7bc3825a5934bcef0841c322dd23966ad02f179960c6a626a19425dc0b7cfcc511538d83546d00eb373edd37cb9d9f8582369f73be1a662151c35c219
|
data/.simplecov
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,55 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
##
|
3
|
+
## 0.0.3 - 2023-01-16
|
4
4
|
|
5
|
-
|
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
|
+
|
11
|
+
## 0.0.2 - 2022-12-02
|
12
|
+
|
13
|
+
### What's Changed
|
14
|
+
|
15
|
+
- README badges and gemspec links by @panteo in https://github.com/bitbond/tangany-ruby/pull/5
|
16
|
+
|
17
|
+
**Full Changelog**: https://github.com/bitbond/tangany-ruby/compare/v0.0.1...v0.0.2
|
18
|
+
|
19
|
+
## 0.0.1 - 2022-12-01
|
20
|
+
|
21
|
+
### What's Changed
|
22
|
+
|
23
|
+
- Customers API client
|
24
|
+
- Natural persons
|
25
|
+
- List
|
26
|
+
- Create
|
27
|
+
- Retrieve
|
28
|
+
- Update
|
29
|
+
- Delete
|
30
|
+
- Customers
|
31
|
+
- List
|
32
|
+
- Create
|
33
|
+
- Retrieve
|
34
|
+
- Update
|
35
|
+
- Delete
|
36
|
+
- Wallet links
|
37
|
+
- List
|
38
|
+
- Create (both with address and wallet name)
|
39
|
+
- Retrieve
|
40
|
+
- Delete
|
41
|
+
- Custody API client
|
42
|
+
- Wallets
|
43
|
+
- List
|
44
|
+
- Create
|
45
|
+
- Retrieve
|
46
|
+
- Update
|
47
|
+
- Delete
|
48
|
+
- Wallet statuses
|
49
|
+
- Retrieve
|
50
|
+
|
51
|
+
### New Contributors
|
52
|
+
|
53
|
+
- @panteo made their first contribution in https://github.com/bitbond/tangany-ruby/pull/2
|
54
|
+
|
55
|
+
**Full Changelog**: https://github.com/bitbond/tangany-ruby/commits/v0.0.1
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,11 +1,18 @@
|
|
1
1
|
# Tangany Ruby Library
|
2
2
|
|
3
|
+
[](https://badge.fury.io/rb/tangany)
|
3
4
|
[](https://github.com/bitbond/tangany-ruby/actions/workflows/ci.yml)
|
5
|
+

|
6
|
+

|
4
7
|
|
5
8
|
The Tangany Ruby library provides convenient access to the Tangany APIs from applications written in the Ruby language. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses.
|
6
9
|
|
7
10
|
---
|
8
11
|
|
12
|
+
## Documentation
|
13
|
+
|
14
|
+
See the [API docs](https://docs.tangany.com) for more details.
|
15
|
+
|
9
16
|
## Installation
|
10
17
|
|
11
18
|
You don't need this source code unless you want to modify the gem. If you just want to use the package, just run:
|
@@ -276,6 +283,12 @@ wallet_link = customers_client.wallet_links.create(
|
|
276
283
|
wallet_link = customers_client.wallet_links.retrieve("wl_123456789")
|
277
284
|
```
|
278
285
|
|
286
|
+
#### Delete wallet link
|
287
|
+
|
288
|
+
```ruby
|
289
|
+
response = customers_client.wallet_links.delete("wl_123456789")
|
290
|
+
```
|
291
|
+
|
279
292
|
---
|
280
293
|
|
281
294
|
## Custody API
|
data/Rakefile
CHANGED
@@ -14,10 +14,10 @@ task :quality_check do
|
|
14
14
|
|
15
15
|
puts "== Quality report generation ".ljust(80, "=")
|
16
16
|
puts
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
abort unless system("rubycritic #{paths}")
|
17
|
+
excluded_paths = FileList.new("lib/ruby_critic/**/*", "lib/simplecov/**/*")
|
18
|
+
paths = FileList.new("lib/**/*.rb").exclude(*excluded_paths).join(" ")
|
19
|
+
badge_formatter_path = File.expand_path("../lib/ruby_critic/formatter/badge_formatter.rb", __FILE__)
|
20
|
+
abort unless system("rubycritic #{paths} --custom-format #{badge_formatter_path}:RubyCritic::Formatter::BadgeFormatter")
|
21
21
|
end
|
22
22
|
|
23
23
|
desc "Regenerates the fixtures"
|
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
@@ -0,0 +1,32 @@
|
|
1
|
+
module RubyCritic
|
2
|
+
module Formatter
|
3
|
+
class BadgeFormatter
|
4
|
+
COLORS = {
|
5
|
+
0..59 => "red",
|
6
|
+
60..69 => "orange",
|
7
|
+
70..79 => "yellow",
|
8
|
+
80..89 => "yellowgreen",
|
9
|
+
90..94 => "green",
|
10
|
+
95..100 => "brightgreen"
|
11
|
+
}.freeze
|
12
|
+
|
13
|
+
def initialize(analysed_modules)
|
14
|
+
@percentage = analysed_modules.score.to_i
|
15
|
+
end
|
16
|
+
|
17
|
+
def generate_report
|
18
|
+
readme_update
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
attr_reader :percentage
|
24
|
+
|
25
|
+
def readme_update
|
26
|
+
color = COLORS.find { |range, _| range.include?(percentage) }.last
|
27
|
+
badge = ""
|
28
|
+
File.write("README.md", File.read("README.md").gsub(/!\[Code quality\]\(.*\)/, badge))
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module SimpleCov
|
2
|
+
module Formatter
|
3
|
+
class BadgeFormatter
|
4
|
+
COLORS = {
|
5
|
+
0..69 => "red",
|
6
|
+
70..79 => "orange",
|
7
|
+
80..89 => "yellow",
|
8
|
+
90..94 => "yellowgreen",
|
9
|
+
95..99 => "green",
|
10
|
+
100..100 => "brightgreen"
|
11
|
+
}.freeze
|
12
|
+
|
13
|
+
def format(result)
|
14
|
+
percentage = result.source_files.covered_percent.to_i
|
15
|
+
readme_update(percentage)
|
16
|
+
end
|
17
|
+
|
18
|
+
private
|
19
|
+
|
20
|
+
def readme_update(percentage)
|
21
|
+
color = COLORS.find { |range, _| range.include?(percentage) }.last
|
22
|
+
badge = ""
|
23
|
+
File.write("README.md", File.read("README.md").gsub(/!\[Test coverage\]\(.*\)/, badge))
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
data/lib/tangany/version.rb
CHANGED
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.
|
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:
|
11
|
+
date: 2023-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -90,9 +90,9 @@ dependencies:
|
|
90
90
|
- - "<"
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: 2.8.0
|
93
|
-
description: Tangany is a German provider for custody of digital assets and crypto.
|
94
|
-
https://tangany.com/ for details.
|
95
|
-
email:
|
93
|
+
description: Tangany is a German provider for custody of digital assets and crypto.
|
94
|
+
See https://tangany.com/ for details.
|
95
|
+
email: service@bitbond.com
|
96
96
|
executables:
|
97
97
|
- console
|
98
98
|
- setup
|
@@ -112,10 +112,13 @@ 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
|
118
119
|
- lib/config/chains.json
|
120
|
+
- lib/ruby_critic/formatter/badge_formatter.rb
|
121
|
+
- lib/simplecov/formatter/badge_formatter.rb
|
119
122
|
- lib/tangany.rb
|
120
123
|
- lib/tangany/application_contract.rb
|
121
124
|
- lib/tangany/collection.rb
|
@@ -185,15 +188,15 @@ files:
|
|
185
188
|
- lib/tangany/types.rb
|
186
189
|
- lib/tangany/version.rb
|
187
190
|
- sig/tangany.rbs
|
188
|
-
homepage: https://
|
191
|
+
homepage: https://github.com/bitbond/tangany-ruby
|
189
192
|
licenses:
|
190
193
|
- MIT
|
191
194
|
metadata:
|
192
195
|
bug_tracker_uri: https://github.com/bitbond/tangany-ruby/issues
|
193
196
|
changelog_uri: https://github.com/bitbond/tangany-ruby/blob/master/CHANGELOG.md
|
194
|
-
documentation_uri: https://
|
197
|
+
documentation_uri: https://github.com/bitbond/tangany-ruby
|
195
198
|
github_repo: ssh://github.com/bitbond/tangany-ruby
|
196
|
-
homepage_uri: https://
|
199
|
+
homepage_uri: https://github.com/bitbond/tangany-ruby
|
197
200
|
source_code_uri: https://github.com/bitbond/tangany-ruby
|
198
201
|
post_install_message:
|
199
202
|
rdoc_options: []
|