moneykit 0.1.0.alpha.1 → 0.1.0.alpha.2

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: c4ba29eb796ce98ed908df12ed88224a6b0bd8c744ed37bd5a523bc281a20880
4
- data.tar.gz: c75fb4d3b6850aad0bb40392c7b0742d8f9529f31a8f67dec059b0509a0895e5
3
+ metadata.gz: 037b5f8f3ee26bd0e876842b7077f35a1e2ac25b795d0bbd4073d448b8477162
4
+ data.tar.gz: b40462131c944a5a8144f8efeb69d5a4afbd526c2e7500bb34fa0e98e70db06d
5
5
  SHA512:
6
- metadata.gz: 22fdf052dd374e5a7dc49c21f7be5e773a7f0a69b36bf0cb8d49ec5e905938a883259072f0289a0f85647f344f31b89e67e7a783c829ba4cc8bf652ae1c8d2dd
7
- data.tar.gz: a512620c115713531282eecfb03975c5ee61b61d8a7d4e5b4431c4d6b6be7b57c5aae7b1401374d7a3983884b20bd6706e28b06db337fd8472c6f0242e928b01
6
+ metadata.gz: 7c2417f3fe5c2e6cba2e93cae57ff6cbfc1553280d31c3ad62b1a8e6fd374c3eb9d04eda7858c91e7e2201b2514962b1d3992fb67db37d14187415e3da313542
7
+ data.tar.gz: 6e66479582d43c535ca2427c3eed0bce9080579a24d269494367d48eee458c005ec216be0142854e7e329ebaf8ccae787f89be2dd995150ae65df84ec0602c21
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- moneykit (0.1.0.alpha.1)
4
+ moneykit (0.1.0.alpha.2)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart
7
7
 
data/README.md CHANGED
@@ -16,7 +16,7 @@ bundle add moneykit.gemspec
16
16
  or add the following to your `Gemfile`
17
17
 
18
18
  ```
19
- gem 'moneykit', '~> 0.1.0.alpha.1'
19
+ gem 'moneykit', '~> 0.1.0.alpha.2'
20
20
  ```
21
21
 
22
22
  ## Getting Started
@@ -29,27 +29,88 @@ require 'moneykit'
29
29
 
30
30
  # Setup authorization
31
31
  MoneyKit.configure do |config|
32
+ # Defaults to MoneyKit-Version: 2023-02-18
32
33
  # Configure Bearer authorization
33
- config.access_token = 'YOUR_BEARER_TOKEN'
34
- # Configure faraday connection
35
- config.configure_faraday_connection { |connection| 'YOUR CONNECTION CONFIG PROC' }
34
+ config.host = ENV['MONEYKIT_URL'] || 'https://api.moneykit.com'
36
35
  end
37
36
 
38
- api_instance = MoneyKit::AccessTokenApi.new
39
- opts = {
40
- moneykit_version: 'moneykit_version_example', # String |
41
- grant_type: 'grant_type_example', # String | Token grant type. Only `client_credentials` supported.
42
- scope: 'scope_example', # String | Actions to be allowed for this token, given as one or more strings separated by spaces. If omitted, all actions allowed for your application will be granted to this token.
43
- client_id: 'client_id_example', # String | Your application's MoneyKit client ID.
44
- client_secret: 'client_secret_example' # String | Your application's MoneyKit client secret.
45
- }
46
-
47
37
  begin
48
38
  #/auth/token
49
- result = api_instance.generate_access_token(opts)
50
- p result
39
+ access_token_api = MoneyKit::AccessTokenApi.new
40
+ response = access_token_api.generate_access_token(
41
+ {
42
+ grant_type: 'client_credentials',
43
+ client_id: ENV['MONEYKIT_CLIENT_ID'],
44
+ client_secret: ENV['MONEYKIT_CLIENT_SECRET']
45
+ }
46
+ )
47
+
48
+ MoneyKit.configure do |config|
49
+ config.access_token = response.access_token
50
+ end
51
51
  rescue MoneyKit::ApiError => e
52
52
  puts "Exception when calling AccessTokenApi->generate_access_token: #{e}"
53
53
  end
54
+ ```
55
+
56
+ ## Examples
57
+
58
+ See our [Examples repository](https://github.com/moneykit/examples) for more complete example projects.
59
+
60
+ ### Create a Link Session
61
+
62
+ ```ruby
63
+ require 'moneykit'
64
+
65
+ link_session_api = MoneyKit::LinkSessionApi.new
66
+ response = link_session_api.create_link_session(
67
+ MoneyKit::CreateLinkSessionRequest.new(
68
+ {
69
+ customer_user: { id: user.uuid },
70
+ redirect_uri: 'http://localhost:3000',
71
+ }
72
+ )
73
+ )
74
+
75
+ link_session_token = response.link_session_token
76
+ ```
77
+
78
+ ### Exchange token for a Link id
79
+
80
+ ```ruby
81
+ require 'moneykit'
82
+
83
+ exchangeable_token = 'TOKEN'
84
+
85
+ link_session_api = MoneyKit::LinkSessionApi.new
86
+ response = link_session_api.exchange_token(
87
+ MoneyKit::ExchangeTokenRequest.new({ exchangeable_token: exchangeable_token })
88
+ )
89
+
90
+ link_id = response.link_id
91
+ institution_id = response.link.institution_id
92
+ ```
93
+
94
+ ### Disconnect link
95
+
96
+ ```ruby
97
+ require 'moneykit'
98
+
99
+ link_id = 'LINK_ID'
100
+
101
+ links_api = MoneyKit::LinksApi.new
102
+ links_api.disconnect(link_id)
103
+ ```
104
+
105
+ ### Fetch accounts
106
+
107
+ ```ruby
108
+ require 'moneykit'
109
+
110
+ link_id = 'LINK_ID'
111
+
112
+ accounts_api = MoneyKit::AccountsApi.new
113
+ response = accounts_api.get_accounts(link_id)
54
114
 
115
+ accounts = response.accounts
55
116
  ```
@@ -34,8 +34,8 @@ opts = {
34
34
  account_ids: ['inner_example'], # Array<String> | An optional list of account IDs to filter the results.
35
35
  page: 56, # Integer | The page number to return.
36
36
  size: 56, # Integer | The number of items to return per page.
37
- start_date: 'start_date_example', # String | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
38
- end_date: 'end_date_example', # String | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
37
+ start_date: Date.parse('2013-10-20'), # Date | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
38
+ end_date: Date.parse('2013-10-20'), # Date | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
39
39
  moneykit_version: 'moneykit_version_example' # String |
40
40
  }
41
41
 
@@ -74,8 +74,8 @@ end
74
74
  | **account_ids** | [**Array&lt;String&gt;**](String.md) | An optional list of account IDs to filter the results. | [optional] |
75
75
  | **page** | **Integer** | The page number to return. | [optional][default to 1] |
76
76
  | **size** | **Integer** | The number of items to return per page. | [optional][default to 50] |
77
- | **start_date** | **String** | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;. | [optional] |
78
- | **end_date** | **String** | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today. | [optional] |
77
+ | **start_date** | **Date** | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;. | [optional] |
78
+ | **end_date** | **Date** | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today. | [optional] |
79
79
  | **moneykit_version** | **String** | | [optional][default to &#39;2023-02-18&#39;] |
80
80
 
81
81
  ### Return type
@@ -197,8 +197,8 @@ opts = {
197
197
  institution_id: ['inner_example'], # Array<String> | If present, filters results to transactions at institutions matching the given IDs.
198
198
  page: 56, # Integer | The page number to return.
199
199
  size: 56, # Integer | The number of items to return per page.
200
- start_date: 'start_date_example', # String | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
201
- end_date: 'end_date_example', # String | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
200
+ start_date: Date.parse('2013-10-20'), # Date | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
201
+ end_date: Date.parse('2013-10-20'), # Date | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
202
202
  moneykit_version: 'moneykit_version_example' # String |
203
203
  }
204
204
 
@@ -240,8 +240,8 @@ end
240
240
  | **institution_id** | [**Array&lt;String&gt;**](String.md) | If present, filters results to transactions at institutions matching the given IDs. | [optional] |
241
241
  | **page** | **Integer** | The page number to return. | [optional][default to 1] |
242
242
  | **size** | **Integer** | The number of items to return per page. | [optional][default to 50] |
243
- | **start_date** | **String** | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;. | [optional] |
244
- | **end_date** | **String** | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today. | [optional] |
243
+ | **start_date** | **Date** | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;. | [optional] |
244
+ | **end_date** | **Date** | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today. | [optional] |
245
245
  | **moneykit_version** | **String** | | [optional][default to &#39;2023-02-18&#39;] |
246
246
 
247
247
  ### Return type
data/docs/UsersApi.md CHANGED
@@ -187,8 +187,8 @@ opts = {
187
187
  institution_id: ['inner_example'], # Array<String> | If present, filters results to transactions at institutions matching the given IDs.
188
188
  page: 56, # Integer | The page number to return.
189
189
  size: 56, # Integer | The number of items to return per page.
190
- start_date: 'start_date_example', # String | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
191
- end_date: 'end_date_example', # String | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
190
+ start_date: Date.parse('2013-10-20'), # Date | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
191
+ end_date: Date.parse('2013-10-20'), # Date | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
192
192
  moneykit_version: 'moneykit_version_example' # String |
193
193
  }
194
194
 
@@ -230,8 +230,8 @@ end
230
230
  | **institution_id** | [**Array&lt;String&gt;**](String.md) | If present, filters results to transactions at institutions matching the given IDs. | [optional] |
231
231
  | **page** | **Integer** | The page number to return. | [optional][default to 1] |
232
232
  | **size** | **Integer** | The number of items to return per page. | [optional][default to 50] |
233
- | **start_date** | **String** | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;. | [optional] |
234
- | **end_date** | **String** | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today. | [optional] |
233
+ | **start_date** | **Date** | The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;. | [optional] |
234
+ | **end_date** | **Date** | The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today. | [optional] |
235
235
  | **moneykit_version** | **String** | | [optional][default to &#39;2023-02-18&#39;] |
236
236
 
237
237
  ### Return type
@@ -26,8 +26,8 @@ module MoneyKit
26
26
  # @option opts [Array<String>] :account_ids An optional list of account IDs to filter the results.
27
27
  # @option opts [Integer] :page The page number to return. (default to 1)
28
28
  # @option opts [Integer] :size The number of items to return per page. (default to 50)
29
- # @option opts [String] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
30
- # @option opts [String] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
29
+ # @option opts [Date] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
30
+ # @option opts [Date] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
31
31
  # @option opts [String] :moneykit_version (default to '2023-02-18')
32
32
  # @return [GetTransactionsResponse]
33
33
  def get_transactions(id, opts = {})
@@ -42,8 +42,8 @@ module MoneyKit
42
42
  # @option opts [Array<String>] :account_ids An optional list of account IDs to filter the results.
43
43
  # @option opts [Integer] :page The page number to return. (default to 1)
44
44
  # @option opts [Integer] :size The number of items to return per page. (default to 50)
45
- # @option opts [String] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
46
- # @option opts [String] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
45
+ # @option opts [Date] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
46
+ # @option opts [Date] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
47
47
  # @option opts [String] :moneykit_version (default to '2023-02-18')
48
48
  # @return [Array<(GetTransactionsResponse, Integer, Hash)>] GetTransactionsResponse data, response status code and response headers
49
49
  def get_transactions_with_http_info(id, opts = {})
@@ -202,8 +202,8 @@ module MoneyKit
202
202
  # @option opts [Array<String>] :institution_id If present, filters results to transactions at institutions matching the given IDs.
203
203
  # @option opts [Integer] :page The page number to return. (default to 1)
204
204
  # @option opts [Integer] :size The number of items to return per page. (default to 50)
205
- # @option opts [String] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
206
- # @option opts [String] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
205
+ # @option opts [Date] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
206
+ # @option opts [Date] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
207
207
  # @option opts [String] :moneykit_version (default to '2023-02-18')
208
208
  # @return [GetUserTransactionsResponse]
209
209
  def get_user_transactions(id, opts = {})
@@ -221,8 +221,8 @@ module MoneyKit
221
221
  # @option opts [Array<String>] :institution_id If present, filters results to transactions at institutions matching the given IDs.
222
222
  # @option opts [Integer] :page The page number to return. (default to 1)
223
223
  # @option opts [Integer] :size The number of items to return per page. (default to 50)
224
- # @option opts [String] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
225
- # @option opts [String] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
224
+ # @option opts [Date] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
225
+ # @option opts [Date] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
226
226
  # @option opts [String] :moneykit_version (default to '2023-02-18')
227
227
  # @return [Array<(GetUserTransactionsResponse, Integer, Hash)>] GetUserTransactionsResponse data, response status code and response headers
228
228
  def get_user_transactions_with_http_info(id, opts = {})
@@ -167,8 +167,8 @@ module MoneyKit
167
167
  # @option opts [Array<String>] :institution_id If present, filters results to transactions at institutions matching the given IDs.
168
168
  # @option opts [Integer] :page The page number to return. (default to 1)
169
169
  # @option opts [Integer] :size The number of items to return per page. (default to 50)
170
- # @option opts [String] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
171
- # @option opts [String] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
170
+ # @option opts [Date] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
171
+ # @option opts [Date] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
172
172
  # @option opts [String] :moneykit_version (default to '2023-02-18')
173
173
  # @return [GetUserTransactionsResponse]
174
174
  def get_user_transactions(id, opts = {})
@@ -186,8 +186,8 @@ module MoneyKit
186
186
  # @option opts [Array<String>] :institution_id If present, filters results to transactions at institutions matching the given IDs.
187
187
  # @option opts [Integer] :page The page number to return. (default to 1)
188
188
  # @option opts [Integer] :size The number of items to return per page. (default to 50)
189
- # @option opts [String] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
190
- # @option opts [String] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
189
+ # @option opts [Date] :start_date The earliest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to 90 days before the &#x60;end_date&#x60;. &lt;p&gt;If you want to retrieve **all** transactions, use &#x60;1900-01-01&#x60;.
190
+ # @option opts [Date] :end_date The latest date for which data should be returned, formatted as YYYY-MM-DD. Defaults to today.
191
191
  # @option opts [String] :moneykit_version (default to '2023-02-18')
192
192
  # @return [Array<(GetUserTransactionsResponse, Integer, Hash)>] GetUserTransactionsResponse data, response status code and response headers
193
193
  def get_user_transactions_with_http_info(id, opts = {})
@@ -36,7 +36,8 @@ module MoneyKit
36
36
  @user_agent = "OpenAPI-Generator/#{VERSION}/ruby"
37
37
  @default_headers = {
38
38
  'Content-Type' => 'application/json',
39
- 'User-Agent' => @user_agent
39
+ 'User-Agent' => @user_agent,
40
+ 'MoneyKit-Version' => '2023-02-18',
40
41
  }
41
42
  end
42
43
 
@@ -11,5 +11,5 @@ OpenAPI Generator version: 7.1.0
11
11
  =end
12
12
 
13
13
  module MoneyKit
14
- VERSION = '0.1.0.alpha.1'
14
+ VERSION = '0.1.0.alpha.2'
15
15
  end
@@ -3,10 +3,10 @@ current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/r
3
3
  creating Makefile
4
4
 
5
5
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-11.1.3/ext/byebug
6
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-af3ki2 sitelibdir\=./.gem.20231205-1795-af3ki2 clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-p7oh0j sitelibdir\=./.gem.20231206-1922-p7oh0j clean
7
7
 
8
8
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-11.1.3/ext/byebug
9
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-af3ki2 sitelibdir\=./.gem.20231205-1795-af3ki2
9
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-p7oh0j sitelibdir\=./.gem.20231206-1922-p7oh0j
10
10
  compiling breakpoint.c
11
11
  compiling byebug.c
12
12
  byebug.c: In function ‘check_started’:
@@ -35,8 +35,8 @@ compiling threads.c
35
35
  linking shared-object byebug/byebug.so
36
36
 
37
37
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-11.1.3/ext/byebug
38
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-af3ki2 sitelibdir\=./.gem.20231205-1795-af3ki2 install
39
- /usr/bin/install -c -m 0755 byebug.so ./.gem.20231205-1795-af3ki2/byebug
38
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-p7oh0j sitelibdir\=./.gem.20231206-1922-p7oh0j install
39
+ /usr/bin/install -c -m 0755 byebug.so ./.gem.20231206-1922-p7oh0j/byebug
40
40
 
41
41
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-11.1.3/ext/byebug
42
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-af3ki2 sitelibdir\=./.gem.20231205-1795-af3ki2 clean
42
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-p7oh0j sitelibdir\=./.gem.20231206-1922-p7oh0j clean
@@ -3,10 +3,10 @@ current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/r
3
3
  creating Makefile
4
4
 
5
5
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
6
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-uc9re sitelibdir\=./.gem.20231205-1795-uc9re clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-m2hjrg sitelibdir\=./.gem.20231206-1922-m2hjrg clean
7
7
 
8
8
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
9
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-uc9re sitelibdir\=./.gem.20231205-1795-uc9re
9
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-m2hjrg sitelibdir\=./.gem.20231206-1922-m2hjrg
10
10
  compiling adj_matrix.c
11
11
  adj_matrix.c: In function ‘adj_matrix_default’:
12
12
  adj_matrix.c:82:12: warning: old-style function definition [-Wold-style-definition]
@@ -22,8 +22,8 @@ compiling jaro_winkler.c
22
22
  linking shared-object jaro_winkler/jaro_winkler_ext.so
23
23
 
24
24
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
25
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-uc9re sitelibdir\=./.gem.20231205-1795-uc9re install
26
- /usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20231205-1795-uc9re/jaro_winkler
25
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-m2hjrg sitelibdir\=./.gem.20231206-1922-m2hjrg install
26
+ /usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20231206-1922-m2hjrg/jaro_winkler
27
27
 
28
28
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
29
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-uc9re sitelibdir\=./.gem.20231205-1795-uc9re clean
29
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-m2hjrg sitelibdir\=./.gem.20231206-1922-m2hjrg clean
@@ -5,13 +5,13 @@ checking for yaml_get_version() in -lyaml... yes
5
5
  creating Makefile
6
6
 
7
7
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych
8
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-fnig8w sitelibdir\=./.gem.20231205-1795-fnig8w clean
8
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-8pywnk sitelibdir\=./.gem.20231206-1922-8pywnk clean
9
9
  cd libyaml && make clean
10
10
  /bin/sh: 1: cd: can't cd to libyaml
11
11
  make: [Makefile:283: clean-so] Error 2 (ignored)
12
12
 
13
13
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych
14
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-fnig8w sitelibdir\=./.gem.20231205-1795-fnig8w
14
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-8pywnk sitelibdir\=./.gem.20231206-1922-8pywnk
15
15
  compiling psych.c
16
16
  compiling psych_emitter.c
17
17
  compiling psych_parser.c
@@ -20,11 +20,11 @@ compiling psych_yaml_tree.c
20
20
  linking shared-object psych.so
21
21
 
22
22
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych
23
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-fnig8w sitelibdir\=./.gem.20231205-1795-fnig8w install
24
- /usr/bin/install -c -m 0755 psych.so ./.gem.20231205-1795-fnig8w
23
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-8pywnk sitelibdir\=./.gem.20231206-1922-8pywnk install
24
+ /usr/bin/install -c -m 0755 psych.so ./.gem.20231206-1922-8pywnk
25
25
 
26
26
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych
27
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-fnig8w sitelibdir\=./.gem.20231205-1795-fnig8w clean
27
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-8pywnk sitelibdir\=./.gem.20231206-1922-8pywnk clean
28
28
  cd libyaml && make clean
29
29
  /bin/sh: 1: cd: can't cd to libyaml
30
30
  make: [Makefile:283: clean-so] Error 2 (ignored)
@@ -3,16 +3,16 @@ current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/r
3
3
  creating Makefile
4
4
 
5
5
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse
6
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-mmrh2g sitelibdir\=./.gem.20231205-1795-mmrh2g clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-hjgkk8 sitelibdir\=./.gem.20231206-1922-hjgkk8 clean
7
7
 
8
8
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse
9
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-mmrh2g sitelibdir\=./.gem.20231205-1795-mmrh2g
9
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-hjgkk8 sitelibdir\=./.gem.20231206-1922-hjgkk8
10
10
  compiling cparse.c
11
11
  linking shared-object racc/cparse.so
12
12
 
13
13
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse
14
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-mmrh2g sitelibdir\=./.gem.20231205-1795-mmrh2g install
15
- /usr/bin/install -c -m 0755 cparse.so ./.gem.20231205-1795-mmrh2g/racc
14
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-hjgkk8 sitelibdir\=./.gem.20231206-1922-hjgkk8 install
15
+ /usr/bin/install -c -m 0755 cparse.so ./.gem.20231206-1922-hjgkk8/racc
16
16
 
17
17
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse
18
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-mmrh2g sitelibdir\=./.gem.20231205-1795-mmrh2g clean
18
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-hjgkk8 sitelibdir\=./.gem.20231206-1922-hjgkk8 clean
@@ -3,16 +3,16 @@ current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/r
3
3
  creating Makefile
4
4
 
5
5
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/stringio-3.1.0/ext/stringio
6
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-qs1pnw sitelibdir\=./.gem.20231205-1795-qs1pnw clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-6whpu0 sitelibdir\=./.gem.20231206-1922-6whpu0 clean
7
7
 
8
8
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/stringio-3.1.0/ext/stringio
9
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-qs1pnw sitelibdir\=./.gem.20231205-1795-qs1pnw
9
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-6whpu0 sitelibdir\=./.gem.20231206-1922-6whpu0
10
10
  compiling stringio.c
11
11
  linking shared-object stringio.so
12
12
 
13
13
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/stringio-3.1.0/ext/stringio
14
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-qs1pnw sitelibdir\=./.gem.20231205-1795-qs1pnw install
15
- /usr/bin/install -c -m 0755 stringio.so ./.gem.20231205-1795-qs1pnw
14
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-6whpu0 sitelibdir\=./.gem.20231206-1922-6whpu0 install
15
+ /usr/bin/install -c -m 0755 stringio.so ./.gem.20231206-1922-6whpu0
16
16
 
17
17
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/stringio-3.1.0/ext/stringio
18
- make DESTDIR\= sitearchdir\=./.gem.20231205-1795-qs1pnw sitelibdir\=./.gem.20231205-1795-qs1pnw clean
18
+ make DESTDIR\= sitearchdir\=./.gem.20231206-1922-6whpu0 sitelibdir\=./.gem.20231206-1922-6whpu0 clean
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moneykit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.alpha.1
4
+ version: 0.1.0.alpha.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - MoneyKit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-05 00:00:00.000000000 Z
11
+ date: 2023-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday