moneykit 0.2.1 → 0.2.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 +1 -1
- data/docs/ApiPublicTransactionsGetTransactionsResponse.md +24 -0
- data/docs/ApiPublicTransactionsLegacyGetTransactionsResponse.md +28 -0
- data/docs/BudCategory.md +20 -0
- data/docs/BudPrimaryCategory.md +15 -0
- data/docs/BudSubcategory.md +15 -0
- data/docs/CustomSandboxAccount.md +24 -0
- data/docs/CustomSandboxData.md +20 -0
- data/docs/GetLinksLink.md +20 -0
- data/docs/GetLinksResponse.md +20 -0
- data/docs/ImportTransactionsRequest.md +18 -0
- data/docs/ProductStateChangedWebhook.md +38 -0
- data/docs/Response401CorrectEnrichmentLinksIdTransactionsTxnIdEnrichmentPost.md +22 -0
- data/docs/Response401CreateLinkSessionLinkSessionPost.md +22 -0
- data/docs/Response401GetLinksLinksGet.md +22 -0
- data/docs/Response401ImportTransactionsLinksIdImportTransactionsPost.md +22 -0
- data/docs/Response401ResetLinkLinksIdResetPost.md +22 -0
- data/lib/moneykit/models/api_public_transactions_get_transactions_response.rb +321 -0
- data/lib/moneykit/models/api_public_transactions_legacy_get_transactions_response.rb +375 -0
- data/lib/moneykit/models/bud_category.rb +266 -0
- data/lib/moneykit/models/bud_primary_category.rb +61 -0
- data/lib/moneykit/models/bud_subcategory.rb +165 -0
- data/lib/moneykit/models/custom_sandbox_account.rb +300 -0
- data/lib/moneykit/models/custom_sandbox_data.rb +250 -0
- data/lib/moneykit/models/get_links_link.rb +261 -0
- data/lib/moneykit/models/get_links_response.rb +231 -0
- data/lib/moneykit/models/import_transactions_request.rb +238 -0
- data/lib/moneykit/models/product_state_changed_webhook.rb +493 -0
- data/lib/moneykit/models/response401_correct_enrichment_links_id_transactions_txn_id_enrichment_post.rb +104 -0
- data/lib/moneykit/models/response401_create_link_session_link_session_post.rb +103 -0
- data/lib/moneykit/models/response401_get_links_links_get.rb +103 -0
- data/lib/moneykit/models/response401_import_transactions_links_id_import_transactions_post.rb +103 -0
- data/lib/moneykit/models/response401_reset_link_links_id_reset_post.rb +104 -0
- data/lib/moneykit/version.rb +1 -1
- data/spec/models/api_public_transactions_get_transactions_response_spec.rb +54 -0
- data/spec/models/api_public_transactions_legacy_get_transactions_response_spec.rb +66 -0
- data/spec/models/bud_category_spec.rb +42 -0
- data/spec/models/bud_primary_category_spec.rb +30 -0
- data/spec/models/bud_subcategory_spec.rb +30 -0
- data/spec/models/custom_sandbox_account_spec.rb +54 -0
- data/spec/models/custom_sandbox_data_spec.rb +42 -0
- data/spec/models/get_links_link_spec.rb +42 -0
- data/spec/models/get_links_response_spec.rb +42 -0
- data/spec/models/import_transactions_request_spec.rb +36 -0
- data/spec/models/product_state_changed_webhook_spec.rb +108 -0
- data/spec/models/response401_correct_enrichment_links_id_transactions_txn_id_enrichment_post_spec.rb +21 -0
- data/spec/models/response401_create_link_session_link_session_post_spec.rb +21 -0
- data/spec/models/response401_get_links_links_get_spec.rb +21 -0
- data/spec/models/response401_import_transactions_links_id_import_transactions_post_spec.rb +21 -0
- data/spec/models/response401_reset_link_links_id_reset_post_spec.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/byebug-12.0.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/json-2.11.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/prism-1.4.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.8.1/gem_make.out +5 -5
- metadata +66 -2
@@ -0,0 +1,42 @@
|
|
1
|
+
=begin
|
2
|
+
#MoneyKit API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2023-02-18
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.12.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MoneyKit::GetLinksResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MoneyKit::GetLinksResponse do
|
21
|
+
let(:instance) { MoneyKit::GetLinksResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of GetLinksResponse' do
|
24
|
+
it 'should create an instance of GetLinksResponse' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
# expect(instance).to be_instance_of(MoneyKit::GetLinksResponse)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "links"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "next_cursor"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
=begin
|
2
|
+
#MoneyKit API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2023-02-18
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.12.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MoneyKit::ImportTransactionsRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MoneyKit::ImportTransactionsRequest do
|
21
|
+
let(:instance) { MoneyKit::ImportTransactionsRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ImportTransactionsRequest' do
|
24
|
+
it 'should create an instance of ImportTransactionsRequest' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
# expect(instance).to be_instance_of(MoneyKit::ImportTransactionsRequest)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "transactions"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
@@ -0,0 +1,108 @@
|
|
1
|
+
=begin
|
2
|
+
#MoneyKit API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2023-02-18
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.12.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MoneyKit::ProductStateChangedWebhook
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MoneyKit::ProductStateChangedWebhook do
|
21
|
+
let(:instance) { MoneyKit::ProductStateChangedWebhook.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ProductStateChangedWebhook' do
|
24
|
+
it 'should create an instance of ProductStateChangedWebhook' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
# expect(instance).to be_instance_of(MoneyKit::ProductStateChangedWebhook)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "webhook_major_version"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Integer', [1])
|
34
|
+
# validator.allowable_values.each do |value|
|
35
|
+
# expect { instance.webhook_major_version = value }.not_to raise_error
|
36
|
+
# end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "webhook_minor_version"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Integer', [0])
|
44
|
+
# validator.allowable_values.each do |value|
|
45
|
+
# expect { instance.webhook_minor_version = value }.not_to raise_error
|
46
|
+
# end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe 'test attribute "webhook_idempotency_key"' do
|
51
|
+
it 'should work' do
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe 'test attribute "webhook_timestamp"' do
|
57
|
+
it 'should work' do
|
58
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe 'test attribute "link_id"' do
|
63
|
+
it 'should work' do
|
64
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
describe 'test attribute "link_tags"' do
|
69
|
+
it 'should work' do
|
70
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe 'test attribute "webhook_event"' do
|
75
|
+
it 'should work' do
|
76
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
77
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["link.product_refresh"])
|
78
|
+
# validator.allowable_values.each do |value|
|
79
|
+
# expect { instance.webhook_event = value }.not_to raise_error
|
80
|
+
# end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe 'test attribute "product"' do
|
85
|
+
it 'should work' do
|
86
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
describe 'test attribute "state"' do
|
91
|
+
it 'should work' do
|
92
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
describe 'test attribute "state_changed_at"' do
|
97
|
+
it 'should work' do
|
98
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
describe 'test attribute "error_message"' do
|
103
|
+
it 'should work' do
|
104
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
end
|
data/spec/models/response401_correct_enrichment_links_id_transactions_txn_id_enrichment_post_spec.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
=begin
|
2
|
+
#MoneyKit API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2023-02-18
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.12.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MoneyKit::Response401CorrectEnrichmentLinksIdTransactionsTxnIdEnrichmentPost
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MoneyKit::Response401CorrectEnrichmentLinksIdTransactionsTxnIdEnrichmentPost do
|
21
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
=begin
|
2
|
+
#MoneyKit API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2023-02-18
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.12.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MoneyKit::Response401CreateLinkSessionLinkSessionPost
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MoneyKit::Response401CreateLinkSessionLinkSessionPost do
|
21
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
=begin
|
2
|
+
#MoneyKit API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2023-02-18
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.12.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MoneyKit::Response401GetLinksLinksGet
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MoneyKit::Response401GetLinksLinksGet do
|
21
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
=begin
|
2
|
+
#MoneyKit API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2023-02-18
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.12.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MoneyKit::Response401ImportTransactionsLinksIdImportTransactionsPost
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MoneyKit::Response401ImportTransactionsLinksIdImportTransactionsPost do
|
21
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
=begin
|
2
|
+
#MoneyKit API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2023-02-18
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.12.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MoneyKit::Response401ResetLinkLinksIdResetPost
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MoneyKit::Response401ResetLinkLinksIdResetPost do
|
21
|
+
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-12.0.0/ext/byebug
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-8j6m9h sitelibdir\=./.gem.20250502-1874-8j6m9h clean
|
7
7
|
|
8
8
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-12.0.0/ext/byebug
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-8j6m9h sitelibdir\=./.gem.20250502-1874-8j6m9h
|
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-12.0.0/ext/byebug
|
38
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
39
|
-
/usr/bin/install -c -m 0755 byebug.so ./.gem.
|
38
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-8j6m9h sitelibdir\=./.gem.20250502-1874-8j6m9h install
|
39
|
+
/usr/bin/install -c -m 0755 byebug.so ./.gem.20250502-1874-8j6m9h/byebug
|
40
40
|
|
41
41
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-12.0.0/ext/byebug
|
42
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
42
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-8j6m9h sitelibdir\=./.gem.20250502-1874-8j6m9h clean
|
@@ -8,16 +8,16 @@ checking for whether -std=c99 is accepted as CFLAGS... yes
|
|
8
8
|
creating Makefile
|
9
9
|
|
10
10
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/json-2.11.3/ext/json/ext/parser
|
11
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
11
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-pqf7m4 sitelibdir\=./.gem.20250502-1874-pqf7m4 clean
|
12
12
|
|
13
13
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/json-2.11.3/ext/json/ext/parser
|
14
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-pqf7m4 sitelibdir\=./.gem.20250502-1874-pqf7m4
|
15
15
|
compiling parser.c
|
16
16
|
linking shared-object json/ext/parser.so
|
17
17
|
|
18
18
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/json-2.11.3/ext/json/ext/parser
|
19
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
20
|
-
/usr/bin/install -c -m 0755 parser.so ./.gem.
|
19
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-pqf7m4 sitelibdir\=./.gem.20250502-1874-pqf7m4 install
|
20
|
+
/usr/bin/install -c -m 0755 parser.so ./.gem.20250502-1874-pqf7m4/json/ext
|
21
21
|
|
22
22
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/json-2.11.3/ext/json/ext/parser
|
23
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
23
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-pqf7m4 sitelibdir\=./.gem.20250502-1874-pqf7m4 clean
|
@@ -6,10 +6,10 @@ checking for whether -fvisibility=hidden is accepted as CFLAGS... yes
|
|
6
6
|
creating Makefile
|
7
7
|
|
8
8
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/prism-1.4.0/ext/prism
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-ducz6s sitelibdir\=./.gem.20250502-1874-ducz6s clean
|
10
10
|
|
11
11
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/prism-1.4.0/ext/prism
|
12
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
12
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-ducz6s sitelibdir\=./.gem.20250502-1874-ducz6s
|
13
13
|
compiling api_node.c
|
14
14
|
compiling api_pack.c
|
15
15
|
compiling extension.c
|
@@ -37,8 +37,8 @@ compiling ./../../src/util/pm_strpbrk.c
|
|
37
37
|
linking shared-object prism/prism.so
|
38
38
|
|
39
39
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/prism-1.4.0/ext/prism
|
40
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
41
|
-
/usr/bin/install -c -m 0755 prism.so ./.gem.
|
40
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-ducz6s sitelibdir\=./.gem.20250502-1874-ducz6s install
|
41
|
+
/usr/bin/install -c -m 0755 prism.so ./.gem.20250502-1874-ducz6s/prism
|
42
42
|
|
43
43
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/prism-1.4.0/ext/prism
|
44
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
44
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-ducz6s sitelibdir\=./.gem.20250502-1874-ducz6s 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/racc-1.8.1/ext/racc/cparse
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-27ry44 sitelibdir\=./.gem.20250502-1874-27ry44 clean
|
7
7
|
|
8
8
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-27ry44 sitelibdir\=./.gem.20250502-1874-27ry44
|
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.8.1/ext/racc/cparse
|
14
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
15
|
-
/usr/bin/install -c -m 0755 cparse.so ./.gem.
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-27ry44 sitelibdir\=./.gem.20250502-1874-27ry44 install
|
15
|
+
/usr/bin/install -c -m 0755 cparse.so ./.gem.20250502-1874-27ry44/racc
|
16
16
|
|
17
17
|
current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
18
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
18
|
+
make DESTDIR\= sitearchdir\=./.gem.20250502-1874-27ry44 sitelibdir\=./.gem.20250502-1874-27ry44 clean
|