moneykit 0.1.0.alpha.1 → 0.1.0.alpha.2
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/Gemfile.lock +1 -1
- data/README.md +76 -15
- data/docs/TransactionsApi.md +8 -8
- data/docs/UsersApi.md +4 -4
- data/lib/moneykit/api/transactions_api.rb +8 -8
- data/lib/moneykit/api/users_api.rb +4 -4
- data/lib/moneykit/api_client.rb +2 -1
- data/lib/moneykit/version.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/byebug-11.1.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/psych-5.1.1.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/stringio-3.1.0/gem_make.out +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 037b5f8f3ee26bd0e876842b7077f35a1e2ac25b795d0bbd4073d448b8477162
|
4
|
+
data.tar.gz: b40462131c944a5a8144f8efeb69d5a4afbd526c2e7500bb34fa0e98e70db06d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c2417f3fe5c2e6cba2e93cae57ff6cbfc1553280d31c3ad62b1a8e6fd374c3eb9d04eda7858c91e7e2201b2514962b1d3992fb67db37d14187415e3da313542
|
7
|
+
data.tar.gz: 6e66479582d43c535ca2427c3eed0bce9080579a24d269494367d48eee458c005ec216be0142854e7e329ebaf8ccae787f89be2dd995150ae65df84ec0602c21
|
data/Gemfile.lock
CHANGED
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.
|
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.
|
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
|
-
|
50
|
-
|
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
|
```
|
data/docs/TransactionsApi.md
CHANGED
@@ -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: '
|
38
|
-
end_date: '
|
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<String>**](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** | **
|
78
|
-
| **end_date** | **
|
77
|
+
| **start_date** | **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`. | [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 '2023-02-18'] |
|
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: '
|
201
|
-
end_date: '
|
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<String>**](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** | **
|
244
|
-
| **end_date** | **
|
243
|
+
| **start_date** | **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`. | [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 '2023-02-18'] |
|
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: '
|
191
|
-
end_date: '
|
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<String>**](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** | **
|
234
|
-
| **end_date** | **
|
233
|
+
| **start_date** | **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`. | [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 '2023-02-18'] |
|
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 [
|
30
|
-
# @option opts [
|
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 `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
|
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 [
|
46
|
-
# @option opts [
|
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 `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
|
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 [
|
206
|
-
# @option opts [
|
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 `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
|
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 [
|
225
|
-
# @option opts [
|
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 `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
|
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 [
|
171
|
-
# @option opts [
|
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 `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
|
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 [
|
190
|
-
# @option opts [
|
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 `end_date`. <p>If you want to retrieve **all** transactions, use `1900-01-01`.
|
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 = {})
|
data/lib/moneykit/api_client.rb
CHANGED
data/lib/moneykit/version.rb
CHANGED
@@ -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.
|
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.
|
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.
|
39
|
-
/usr/bin/install -c -m 0755 byebug.so ./.gem.
|
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.
|
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.
|
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.
|
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.
|
26
|
-
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.
|
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.
|
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.
|
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.
|
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.
|
24
|
-
/usr/bin/install -c -m 0755 psych.so ./.gem.
|
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.
|
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.
|
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.
|
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.
|
15
|
-
/usr/bin/install -c -m 0755 cparse.so ./.gem.
|
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.
|
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.
|
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.
|
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.
|
15
|
-
/usr/bin/install -c -m 0755 stringio.so ./.gem.
|
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.
|
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.
|
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-
|
11
|
+
date: 2023-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|