ledger_sync-netsuite 0.3.5 → 0.3.6
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/.github/workflows/gem-workflow.yml +9 -5
- data/Gemfile.lock +107 -94
- data/ledger_sync-netsuite.gemspec +7 -4
- data/lib/ledger_sync/netsuite/client.rb +6 -12
- data/lib/ledger_sync/netsuite/resources/account.rb +1 -1
- data/lib/ledger_sync/netsuite/version.rb +1 -1
- metadata +43 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95e8639fb4e5d4e11c4d638f7872fe037b2ee6145d1260c5b8786ecd9a25c951
|
4
|
+
data.tar.gz: 30960fbb46a8fb5815a49fe7c3ef8328338d15106be52bb5c756ee773a0d9cc0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9f2abee457833c1cd8e66ffa68b870c4304fdb044c7bcc8448ee4eb53ce023cb64426726c4316df3cd81e58a565b3ab5a118bbac6dc181199d677dd9e8df873
|
7
|
+
data.tar.gz: fb788ea08dfa8438f6d8d3e28c4093ef3fa8bec4c9a46f25484b2c1c50158d418aa2a2c253b4e1f0a8174c659b221a68fa8a76fcc4b45ca0511754225e4c3bc0
|
@@ -8,7 +8,7 @@ jobs:
|
|
8
8
|
rubocop:
|
9
9
|
strategy:
|
10
10
|
matrix:
|
11
|
-
ruby-version: [2.
|
11
|
+
ruby-version: [2.7.5, 3.0.2]
|
12
12
|
runs-on: [ubuntu-latest]
|
13
13
|
steps:
|
14
14
|
- uses: actions/checkout@v2
|
@@ -24,7 +24,7 @@ jobs:
|
|
24
24
|
rspec:
|
25
25
|
strategy:
|
26
26
|
matrix:
|
27
|
-
ruby-version: [2.
|
27
|
+
ruby-version: [2.7.5, 3.0.2]
|
28
28
|
runs-on: [ubuntu-latest]
|
29
29
|
steps:
|
30
30
|
- uses: actions/checkout@v2
|
@@ -37,12 +37,16 @@ jobs:
|
|
37
37
|
ruby-version: ${{ matrix.ruby-version }}
|
38
38
|
bundler-cache: true
|
39
39
|
- name: rspec and report to coveralls
|
40
|
-
env:
|
41
|
-
COVERALLS_REPO_TOKEN: ${{ github.event_name == 'push' && secrets.COVERALLS_REPO_TOKEN }}
|
42
40
|
run: bundle exec rspec --order rand
|
41
|
+
- name: Coveralls
|
42
|
+
uses: coverallsapp/github-action@master
|
43
|
+
with:
|
44
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
45
|
+
parallel: true
|
46
|
+
flag-name: run-${{ matrix.ruby-version }}
|
43
47
|
publish:
|
44
48
|
runs-on: ubuntu-latest
|
45
|
-
needs: [
|
49
|
+
needs: ["rubocop", "rspec"]
|
46
50
|
if: github.event_name == 'release' && github.event.action == 'created'
|
47
51
|
steps:
|
48
52
|
- name: Checkout
|
data/Gemfile.lock
CHANGED
@@ -1,109 +1,113 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ledger_sync-netsuite (0.3.
|
4
|
+
ledger_sync-netsuite (0.3.6)
|
5
5
|
dotenv
|
6
|
-
ledger_sync (>= 2.
|
6
|
+
ledger_sync (>= 2.3.1)
|
7
7
|
nokogiri
|
8
8
|
oauth2
|
9
9
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
activemodel (
|
14
|
-
activesupport (=
|
15
|
-
activesupport (
|
13
|
+
activemodel (7.0.2.2)
|
14
|
+
activesupport (= 7.0.2.2)
|
15
|
+
activesupport (7.0.2.2)
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
17
|
i18n (>= 1.6, < 2)
|
18
18
|
minitest (>= 5.1)
|
19
19
|
tzinfo (~> 2.0)
|
20
|
-
|
21
|
-
addressable (2.7.0)
|
20
|
+
addressable (2.8.0)
|
22
21
|
public_suffix (>= 2.0.2, < 5.0)
|
23
22
|
ast (2.4.2)
|
24
23
|
awesome_print (1.9.2)
|
25
|
-
bump (0.9.0)
|
26
24
|
byebug (11.1.3)
|
27
25
|
climate_control (1.0.1)
|
28
26
|
colorize (0.8.1)
|
29
|
-
concurrent-ruby (1.1.
|
30
|
-
coveralls (0.
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
27
|
+
concurrent-ruby (1.1.9)
|
28
|
+
coveralls (0.7.2)
|
29
|
+
multi_json (~> 1.3)
|
30
|
+
rest-client (= 1.6.7)
|
31
|
+
simplecov (>= 0.7)
|
32
|
+
term-ansicolor (= 1.2.2)
|
33
|
+
thor (= 0.18.1)
|
36
34
|
crack (0.4.5)
|
37
35
|
rexml
|
38
|
-
diff-lcs (1.
|
36
|
+
diff-lcs (1.5.0)
|
39
37
|
docile (1.4.0)
|
40
38
|
dotenv (2.7.6)
|
41
|
-
dry-configurable (0.
|
39
|
+
dry-configurable (0.14.0)
|
42
40
|
concurrent-ruby (~> 1.0)
|
43
|
-
dry-core (~> 0.
|
44
|
-
dry-container (0.
|
41
|
+
dry-core (~> 0.6)
|
42
|
+
dry-container (0.9.0)
|
45
43
|
concurrent-ruby (~> 1.0)
|
46
|
-
dry-configurable (~> 0.
|
47
|
-
dry-core (0.
|
44
|
+
dry-configurable (~> 0.13, >= 0.13.0)
|
45
|
+
dry-core (0.7.1)
|
48
46
|
concurrent-ruby (~> 1.0)
|
49
|
-
dry-
|
50
|
-
dry-
|
51
|
-
dry-initializer (3.0.4)
|
47
|
+
dry-inflector (0.2.1)
|
48
|
+
dry-initializer (3.1.1)
|
52
49
|
dry-logic (1.2.0)
|
53
50
|
concurrent-ruby (~> 1.0)
|
54
51
|
dry-core (~> 0.5, >= 0.5)
|
55
|
-
dry-schema (1.
|
52
|
+
dry-schema (1.9.1)
|
56
53
|
concurrent-ruby (~> 1.0)
|
57
|
-
dry-configurable (~> 0.
|
58
|
-
dry-core (~> 0.
|
59
|
-
dry-equalizer (~> 0.2)
|
54
|
+
dry-configurable (~> 0.13, >= 0.13.0)
|
55
|
+
dry-core (~> 0.5, >= 0.5)
|
60
56
|
dry-initializer (~> 3.0)
|
61
57
|
dry-logic (~> 1.0)
|
62
|
-
dry-types (~> 1.
|
58
|
+
dry-types (~> 1.5)
|
63
59
|
dry-types (1.5.1)
|
64
60
|
concurrent-ruby (~> 1.0)
|
65
61
|
dry-container (~> 0.3)
|
66
62
|
dry-core (~> 0.5, >= 0.5)
|
67
63
|
dry-inflector (~> 0.1, >= 0.1.2)
|
68
64
|
dry-logic (~> 1.0, >= 1.0.2)
|
69
|
-
dry-validation (1.
|
65
|
+
dry-validation (1.8.0)
|
70
66
|
concurrent-ruby (~> 1.0)
|
71
67
|
dry-container (~> 0.7, >= 0.7.1)
|
72
|
-
dry-core (~> 0.
|
73
|
-
dry-equalizer (~> 0.2)
|
68
|
+
dry-core (~> 0.5, >= 0.5)
|
74
69
|
dry-initializer (~> 3.0)
|
75
|
-
dry-schema (~> 1.
|
76
|
-
factory_bot (6.
|
70
|
+
dry-schema (~> 1.9, >= 1.9.1)
|
71
|
+
factory_bot (6.2.0)
|
77
72
|
activesupport (>= 5.0.0)
|
78
|
-
faraday (1.
|
73
|
+
faraday (1.10.0)
|
79
74
|
faraday-em_http (~> 1.0)
|
80
75
|
faraday-em_synchrony (~> 1.0)
|
81
76
|
faraday-excon (~> 1.1)
|
77
|
+
faraday-httpclient (~> 1.0)
|
78
|
+
faraday-multipart (~> 1.0)
|
82
79
|
faraday-net_http (~> 1.0)
|
83
|
-
faraday-net_http_persistent (~> 1.
|
84
|
-
|
80
|
+
faraday-net_http_persistent (~> 1.0)
|
81
|
+
faraday-patron (~> 1.0)
|
82
|
+
faraday-rack (~> 1.0)
|
83
|
+
faraday-retry (~> 1.0)
|
85
84
|
ruby2_keywords (>= 0.0.4)
|
86
|
-
faraday-detailed_logger (2.
|
87
|
-
faraday (>= 0.
|
85
|
+
faraday-detailed_logger (2.5.0)
|
86
|
+
faraday (>= 0.16, < 3)
|
88
87
|
faraday-em_http (1.0.0)
|
89
88
|
faraday-em_synchrony (1.0.0)
|
90
89
|
faraday-excon (1.1.0)
|
90
|
+
faraday-httpclient (1.0.1)
|
91
|
+
faraday-multipart (1.0.3)
|
92
|
+
multipart-post (>= 1.2, < 3)
|
91
93
|
faraday-net_http (1.0.1)
|
92
|
-
faraday-net_http_persistent (1.
|
93
|
-
|
94
|
+
faraday-net_http_persistent (1.2.0)
|
95
|
+
faraday-patron (1.0.0)
|
96
|
+
faraday-rack (1.0.0)
|
97
|
+
faraday-retry (1.0.3)
|
98
|
+
faraday_middleware (1.2.0)
|
94
99
|
faraday (~> 1.0)
|
95
100
|
fingerprintable (1.2.1)
|
96
101
|
colorize
|
97
102
|
hashdiff (1.0.1)
|
98
|
-
i18n (1.
|
103
|
+
i18n (1.10.0)
|
99
104
|
concurrent-ruby (~> 1.0)
|
100
|
-
|
101
|
-
jwt (2.
|
102
|
-
ledger_sync (2.
|
105
|
+
ipaddr (1.2.4)
|
106
|
+
jwt (2.3.0)
|
107
|
+
ledger_sync (2.3.1)
|
103
108
|
activemodel
|
104
|
-
|
105
|
-
dry-
|
106
|
-
dry-validation (~> 1.5.6)
|
109
|
+
dry-schema
|
110
|
+
dry-validation
|
107
111
|
faraday
|
108
112
|
faraday-detailed_logger
|
109
113
|
faraday_middleware
|
@@ -112,98 +116,107 @@ GEM
|
|
112
116
|
openssl (~> 2.2.0)
|
113
117
|
pd_ruby
|
114
118
|
rack (~> 2.2.3)
|
119
|
+
rainbow (~> 3.0)
|
115
120
|
resonad
|
116
121
|
simply_serializable (>= 1.5.1)
|
117
|
-
|
122
|
+
mime-types (3.4.1)
|
123
|
+
mime-types-data (~> 3.2015)
|
124
|
+
mime-types-data (3.2022.0105)
|
125
|
+
mini_portile2 (2.8.0)
|
126
|
+
minitest (5.15.0)
|
118
127
|
multi_json (1.15.0)
|
119
128
|
multi_xml (0.6.0)
|
120
129
|
multipart-post (2.1.1)
|
121
|
-
nokogiri (1.
|
130
|
+
nokogiri (1.13.3)
|
131
|
+
mini_portile2 (~> 2.8.0)
|
122
132
|
racc (~> 1.4)
|
123
|
-
oauth2 (1.4.
|
124
|
-
faraday (>= 0.
|
133
|
+
oauth2 (1.4.9)
|
134
|
+
faraday (>= 0.17.3, < 3.0)
|
125
135
|
jwt (>= 1.0, < 3.0)
|
126
136
|
multi_json (~> 1.3)
|
127
137
|
multi_xml (~> 0.5)
|
128
138
|
rack (>= 1.2, < 3)
|
129
|
-
openssl (2.2.
|
130
|
-
|
131
|
-
|
139
|
+
openssl (2.2.1)
|
140
|
+
ipaddr
|
141
|
+
parallel (1.21.0)
|
142
|
+
parser (3.1.1.0)
|
132
143
|
ast (~> 2.4.1)
|
133
144
|
pd_ruby (0.2.3)
|
134
145
|
colorize
|
135
146
|
public_suffix (4.0.6)
|
136
|
-
racc (1.
|
147
|
+
racc (1.6.0)
|
137
148
|
rack (2.2.3)
|
138
|
-
rainbow (3.
|
139
|
-
rake (13.0.
|
140
|
-
regexp_parser (2.
|
149
|
+
rainbow (3.1.1)
|
150
|
+
rake (13.0.6)
|
151
|
+
regexp_parser (2.2.1)
|
141
152
|
resonad (1.4.0)
|
153
|
+
rest-client (1.6.7)
|
154
|
+
mime-types (>= 1.16)
|
142
155
|
rexml (3.2.5)
|
143
|
-
rspec (3.
|
144
|
-
rspec-core (~> 3.
|
145
|
-
rspec-expectations (~> 3.
|
146
|
-
rspec-mocks (~> 3.
|
147
|
-
rspec-core (3.
|
148
|
-
rspec-support (~> 3.
|
149
|
-
rspec-expectations (3.
|
156
|
+
rspec (3.11.0)
|
157
|
+
rspec-core (~> 3.11.0)
|
158
|
+
rspec-expectations (~> 3.11.0)
|
159
|
+
rspec-mocks (~> 3.11.0)
|
160
|
+
rspec-core (3.11.0)
|
161
|
+
rspec-support (~> 3.11.0)
|
162
|
+
rspec-expectations (3.11.0)
|
150
163
|
diff-lcs (>= 1.2.0, < 2.0)
|
151
|
-
rspec-support (~> 3.
|
152
|
-
rspec-mocks (3.
|
164
|
+
rspec-support (~> 3.11.0)
|
165
|
+
rspec-mocks (3.11.0)
|
153
166
|
diff-lcs (>= 1.2.0, < 2.0)
|
154
|
-
rspec-support (~> 3.
|
155
|
-
rspec-support (3.
|
156
|
-
rubocop (1.
|
167
|
+
rspec-support (~> 3.11.0)
|
168
|
+
rspec-support (3.11.0)
|
169
|
+
rubocop (1.25.1)
|
157
170
|
parallel (~> 1.10)
|
158
|
-
parser (>= 3.
|
171
|
+
parser (>= 3.1.0.0)
|
159
172
|
rainbow (>= 2.2.2, < 4.0)
|
160
173
|
regexp_parser (>= 1.8, < 3.0)
|
161
174
|
rexml
|
162
|
-
rubocop-ast (>= 1.
|
175
|
+
rubocop-ast (>= 1.15.1, < 2.0)
|
163
176
|
ruby-progressbar (~> 1.7)
|
164
177
|
unicode-display_width (>= 1.4.0, < 3.0)
|
165
|
-
rubocop-ast (1.
|
166
|
-
parser (>= 3.
|
178
|
+
rubocop-ast (1.16.0)
|
179
|
+
parser (>= 3.1.1.0)
|
167
180
|
ruby-progressbar (1.11.0)
|
168
|
-
ruby2_keywords (0.0.
|
169
|
-
simplecov (0.
|
181
|
+
ruby2_keywords (0.0.5)
|
182
|
+
simplecov (0.21.2)
|
170
183
|
docile (~> 1.1)
|
171
|
-
|
172
|
-
|
173
|
-
simplecov-html (0.
|
184
|
+
simplecov-html (~> 0.11)
|
185
|
+
simplecov_json_formatter (~> 0.1)
|
186
|
+
simplecov-html (0.12.3)
|
187
|
+
simplecov-lcov (0.8.0)
|
188
|
+
simplecov_json_formatter (0.1.4)
|
174
189
|
simply_serializable (1.5.1)
|
175
190
|
fingerprintable (>= 1.2.1)
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
tins (1.29.1)
|
181
|
-
sync
|
191
|
+
term-ansicolor (1.2.2)
|
192
|
+
tins (~> 0.8)
|
193
|
+
thor (0.18.1)
|
194
|
+
tins (0.13.2)
|
182
195
|
tzinfo (2.0.4)
|
183
196
|
concurrent-ruby (~> 1.0)
|
184
|
-
unicode-display_width (2.
|
185
|
-
webmock (3.
|
186
|
-
addressable (>= 2.
|
197
|
+
unicode-display_width (2.1.0)
|
198
|
+
webmock (3.14.0)
|
199
|
+
addressable (>= 2.8.0)
|
187
200
|
crack (>= 0.3.2)
|
188
201
|
hashdiff (>= 0.4.0, < 2.0.0)
|
189
|
-
zeitwerk (2.4.2)
|
190
202
|
|
191
203
|
PLATFORMS
|
192
204
|
ruby
|
193
205
|
|
194
206
|
DEPENDENCIES
|
195
207
|
awesome_print
|
196
|
-
bump (~> 0.9.0)
|
197
208
|
bundler (~> 2.1)
|
198
209
|
byebug
|
199
210
|
climate_control
|
200
|
-
coveralls
|
201
|
-
factory_bot
|
211
|
+
coveralls
|
212
|
+
factory_bot
|
202
213
|
ledger_sync-netsuite!
|
203
214
|
rake (~> 13.0)
|
204
215
|
rspec (~> 3.2)
|
205
216
|
rubocop
|
217
|
+
simplecov
|
218
|
+
simplecov-lcov
|
206
219
|
webmock
|
207
220
|
|
208
221
|
BUNDLED WITH
|
209
|
-
2.
|
222
|
+
2.2.22
|
@@ -27,18 +27,21 @@ Gem::Specification.new do |spec|
|
|
27
27
|
spec.require_paths = ['lib']
|
28
28
|
|
29
29
|
spec.add_development_dependency('awesome_print', '>= 0')
|
30
|
-
spec.add_development_dependency('bump', '~> 0.9.0')
|
31
30
|
spec.add_development_dependency('bundler', '~> 2.1')
|
32
31
|
spec.add_development_dependency('byebug')
|
33
32
|
spec.add_development_dependency('climate_control')
|
34
|
-
spec.add_development_dependency('coveralls'
|
35
|
-
spec.add_development_dependency('factory_bot'
|
33
|
+
spec.add_development_dependency('coveralls')
|
34
|
+
spec.add_development_dependency('factory_bot')
|
36
35
|
spec.add_development_dependency('rake', '~> 13.0')
|
37
36
|
spec.add_development_dependency('rspec', '~> 3.2')
|
38
37
|
spec.add_development_dependency('rubocop', '>= 0')
|
38
|
+
spec.add_development_dependency('simplecov')
|
39
|
+
spec.add_development_dependency('simplecov-lcov')
|
39
40
|
spec.add_development_dependency('webmock', '>= 0')
|
40
41
|
spec.add_runtime_dependency('dotenv')
|
41
|
-
spec.add_runtime_dependency('ledger_sync', '>= 2.
|
42
|
+
spec.add_runtime_dependency('ledger_sync', '>= 2.3.1')
|
42
43
|
spec.add_runtime_dependency('nokogiri', '>= 0')
|
43
44
|
spec.add_runtime_dependency('oauth2', '>= 0')
|
45
|
+
|
46
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
44
47
|
end
|
@@ -23,18 +23,12 @@ module LedgerSync
|
|
23
23
|
:token_id,
|
24
24
|
:token_secret
|
25
25
|
|
26
|
-
def initialize(
|
27
|
-
account_id
|
28
|
-
consumer_key
|
29
|
-
consumer_secret
|
30
|
-
token_id
|
31
|
-
token_secret:
|
32
|
-
)
|
33
|
-
@account_id = account_id
|
34
|
-
@consumer_key = consumer_key
|
35
|
-
@consumer_secret = consumer_secret
|
36
|
-
@token_id = token_id
|
37
|
-
@token_secret = token_secret
|
26
|
+
def initialize(args = {})
|
27
|
+
@account_id = args.fetch(:account_id)
|
28
|
+
@consumer_key = args.fetch(:consumer_key)
|
29
|
+
@consumer_secret = args.fetch(:consumer_secret)
|
30
|
+
@token_id = args.fetch(:token_id)
|
31
|
+
@token_secret = args.fetch(:token_secret)
|
38
32
|
|
39
33
|
super()
|
40
34
|
end
|
@@ -29,7 +29,7 @@ module LedgerSync
|
|
29
29
|
|
30
30
|
attribute :name, type: Type::String
|
31
31
|
attribute :classification, type: Type::String
|
32
|
-
attribute :account_type, type: Type::StringFromSet.new(values: TYPES.keys)
|
32
|
+
attribute :account_type, type: Type::StringFromSet.new({ values: TYPES.keys })
|
33
33
|
attribute :account_sub_type, type: Type::String
|
34
34
|
attribute :number, type: Type::String
|
35
35
|
attribute :description, type: Type::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ledger_sync-netsuite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Modern Treasury
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -24,20 +24,6 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: bump
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 0.9.0
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 0.9.0
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: bundler
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,30 +70,30 @@ dependencies:
|
|
84
70
|
name: coveralls
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
86
72
|
requirements:
|
87
|
-
- - "
|
73
|
+
- - ">="
|
88
74
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0
|
75
|
+
version: '0'
|
90
76
|
type: :development
|
91
77
|
prerelease: false
|
92
78
|
version_requirements: !ruby/object:Gem::Requirement
|
93
79
|
requirements:
|
94
|
-
- - "
|
80
|
+
- - ">="
|
95
81
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0
|
82
|
+
version: '0'
|
97
83
|
- !ruby/object:Gem::Dependency
|
98
84
|
name: factory_bot
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
100
86
|
requirements:
|
101
|
-
- - "
|
87
|
+
- - ">="
|
102
88
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
89
|
+
version: '0'
|
104
90
|
type: :development
|
105
91
|
prerelease: false
|
106
92
|
version_requirements: !ruby/object:Gem::Requirement
|
107
93
|
requirements:
|
108
|
-
- - "
|
94
|
+
- - ">="
|
109
95
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
96
|
+
version: '0'
|
111
97
|
- !ruby/object:Gem::Dependency
|
112
98
|
name: rake
|
113
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -150,6 +136,34 @@ dependencies:
|
|
150
136
|
- - ">="
|
151
137
|
- !ruby/object:Gem::Version
|
152
138
|
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: simplecov
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: simplecov-lcov
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
153
167
|
- !ruby/object:Gem::Dependency
|
154
168
|
name: webmock
|
155
169
|
requirement: !ruby/object:Gem::Requirement
|
@@ -184,14 +198,14 @@ dependencies:
|
|
184
198
|
requirements:
|
185
199
|
- - ">="
|
186
200
|
- !ruby/object:Gem::Version
|
187
|
-
version: 2.
|
201
|
+
version: 2.3.1
|
188
202
|
type: :runtime
|
189
203
|
prerelease: false
|
190
204
|
version_requirements: !ruby/object:Gem::Requirement
|
191
205
|
requirements:
|
192
206
|
- - ">="
|
193
207
|
- !ruby/object:Gem::Version
|
194
|
-
version: 2.
|
208
|
+
version: 2.3.1
|
195
209
|
- !ruby/object:Gem::Dependency
|
196
210
|
name: nokogiri
|
197
211
|
requirement: !ruby/object:Gem::Requirement
|
@@ -368,7 +382,8 @@ files:
|
|
368
382
|
- license.txt
|
369
383
|
homepage: https://www.ledgersync.dev
|
370
384
|
licenses: []
|
371
|
-
metadata:
|
385
|
+
metadata:
|
386
|
+
rubygems_mfa_required: 'true'
|
372
387
|
post_install_message:
|
373
388
|
rdoc_options: []
|
374
389
|
require_paths:
|
@@ -384,7 +399,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
384
399
|
- !ruby/object:Gem::Version
|
385
400
|
version: '0'
|
386
401
|
requirements: []
|
387
|
-
rubygems_version: 3.1.
|
402
|
+
rubygems_version: 3.1.2
|
388
403
|
signing_key:
|
389
404
|
specification_version: 4
|
390
405
|
summary: Sync common objects to accounting software.
|