ledger_sync-netsuite 0.3.5 → 0.4.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/.github/workflows/gem-workflow.yml +13 -7
- data/.rubocop_todo.yml +3 -0
- data/Gemfile.lock +132 -114
- data/ledger_sync-netsuite.gemspec +8 -5
- data/lib/ledger_sync/netsuite/client.rb +6 -12
- data/lib/ledger_sync/netsuite/resources/account.rb +3 -2
- data/lib/ledger_sync/netsuite/version.rb +2 -2
- 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: 5002506e69ca05fff5b1035120266a8b0149e719c79fff7a3421dd28e5b8eea5
|
4
|
+
data.tar.gz: 1175713eac9d4f28512211cac9218f06fc9b6fc39f3509812ec08ae82aa95a58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28320ee39e340994adc11c1cd692f07074ceff443276b39f9711be7bec3d856634a6eb9cc343a81cc31a9c68e24874d965a4f6e934a9d6efb659f9616d742f6e
|
7
|
+
data.tar.gz: 2bb66ebffd66340dafc94419f389ff496c50b4baa667d4a1aa690a76d1c4889c6986deca8d97681f185fddb70142ba9325440535ec12b8226d587ecadceee1dc
|
@@ -8,8 +8,9 @@ jobs:
|
|
8
8
|
rubocop:
|
9
9
|
strategy:
|
10
10
|
matrix:
|
11
|
-
|
12
|
-
|
11
|
+
os: [ubuntu-latest]
|
12
|
+
ruby-version: ['2.7', '3.0']
|
13
|
+
runs-on: ${{ matrix.os }}
|
13
14
|
steps:
|
14
15
|
- uses: actions/checkout@v2
|
15
16
|
with:
|
@@ -24,8 +25,9 @@ jobs:
|
|
24
25
|
rspec:
|
25
26
|
strategy:
|
26
27
|
matrix:
|
27
|
-
|
28
|
-
|
28
|
+
os: [ubuntu-latest]
|
29
|
+
ruby-version: ['2.7', '3.0']
|
30
|
+
runs-on: ${{ matrix.os }}
|
29
31
|
steps:
|
30
32
|
- uses: actions/checkout@v2
|
31
33
|
with:
|
@@ -37,12 +39,16 @@ jobs:
|
|
37
39
|
ruby-version: ${{ matrix.ruby-version }}
|
38
40
|
bundler-cache: true
|
39
41
|
- name: rspec and report to coveralls
|
40
|
-
env:
|
41
|
-
COVERALLS_REPO_TOKEN: ${{ github.event_name == 'push' && secrets.COVERALLS_REPO_TOKEN }}
|
42
42
|
run: bundle exec rspec --order rand
|
43
|
+
- name: Coveralls
|
44
|
+
uses: coverallsapp/github-action@master
|
45
|
+
with:
|
46
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
47
|
+
parallel: true
|
48
|
+
flag-name: run-${{ matrix.ruby-version }}
|
43
49
|
publish:
|
44
50
|
runs-on: ubuntu-latest
|
45
|
-
needs: [
|
51
|
+
needs: ["rubocop", "rspec"]
|
46
52
|
if: github.event_name == 'release' && github.event.action == 'created'
|
47
53
|
steps:
|
48
54
|
- name: Checkout
|
data/.rubocop_todo.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,109 +1,115 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ledger_sync-netsuite (0.
|
4
|
+
ledger_sync-netsuite (0.4.2)
|
5
5
|
dotenv
|
6
|
-
ledger_sync (>= 2.
|
6
|
+
ledger_sync (>= 2.4)
|
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.4.2)
|
14
|
+
activesupport (= 7.0.4.2)
|
15
|
+
activesupport (7.0.4.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
|
-
|
22
|
-
public_suffix (>= 2.0.2, < 5.0)
|
20
|
+
addressable (2.8.1)
|
21
|
+
public_suffix (>= 2.0.2, < 6.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
|
-
climate_control (1.0
|
25
|
+
climate_control (1.2.0)
|
28
26
|
colorize (0.8.1)
|
29
|
-
concurrent-ruby (1.
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
tins (~> 1.6)
|
27
|
+
concurrent-ruby (1.2.0)
|
28
|
+
coveralls_reborn (0.27.0)
|
29
|
+
simplecov (~> 0.22.0)
|
30
|
+
term-ansicolor (~> 1.7)
|
31
|
+
thor (~> 1.2)
|
32
|
+
tins (~> 1.32)
|
36
33
|
crack (0.4.5)
|
37
34
|
rexml
|
38
|
-
diff-lcs (1.
|
35
|
+
diff-lcs (1.5.0)
|
39
36
|
docile (1.4.0)
|
40
|
-
dotenv (2.
|
41
|
-
dry-configurable (0.
|
37
|
+
dotenv (2.8.1)
|
38
|
+
dry-configurable (1.0.1)
|
39
|
+
dry-core (~> 1.0, < 2)
|
40
|
+
zeitwerk (~> 2.6)
|
41
|
+
dry-core (1.0.0)
|
42
42
|
concurrent-ruby (~> 1.0)
|
43
|
-
|
44
|
-
dry-
|
43
|
+
zeitwerk (~> 2.6)
|
44
|
+
dry-inflector (1.0.0)
|
45
|
+
dry-initializer (3.1.1)
|
46
|
+
dry-logic (1.5.0)
|
45
47
|
concurrent-ruby (~> 1.0)
|
46
|
-
dry-
|
47
|
-
|
48
|
+
dry-core (~> 1.0, < 2)
|
49
|
+
zeitwerk (~> 2.6)
|
50
|
+
dry-schema (1.13.0)
|
48
51
|
concurrent-ruby (~> 1.0)
|
49
|
-
|
50
|
-
|
51
|
-
dry-initializer (3.0.4)
|
52
|
-
dry-logic (1.2.0)
|
53
|
-
concurrent-ruby (~> 1.0)
|
54
|
-
dry-core (~> 0.5, >= 0.5)
|
55
|
-
dry-schema (1.5.6)
|
56
|
-
concurrent-ruby (~> 1.0)
|
57
|
-
dry-configurable (~> 0.8, >= 0.8.3)
|
58
|
-
dry-core (~> 0.4)
|
59
|
-
dry-equalizer (~> 0.2)
|
52
|
+
dry-configurable (~> 1.0, >= 1.0.1)
|
53
|
+
dry-core (~> 1.0, < 2)
|
60
54
|
dry-initializer (~> 3.0)
|
61
|
-
dry-logic (
|
62
|
-
dry-types (
|
63
|
-
|
55
|
+
dry-logic (>= 1.5, < 2)
|
56
|
+
dry-types (>= 1.7, < 2)
|
57
|
+
zeitwerk (~> 2.6)
|
58
|
+
dry-types (1.7.1)
|
64
59
|
concurrent-ruby (~> 1.0)
|
65
|
-
dry-
|
66
|
-
dry-
|
67
|
-
dry-
|
68
|
-
|
69
|
-
dry-validation (1.
|
60
|
+
dry-core (~> 1.0)
|
61
|
+
dry-inflector (~> 1.0)
|
62
|
+
dry-logic (~> 1.4)
|
63
|
+
zeitwerk (~> 2.6)
|
64
|
+
dry-validation (1.10.0)
|
70
65
|
concurrent-ruby (~> 1.0)
|
71
|
-
dry-
|
72
|
-
dry-core (~> 0.4)
|
73
|
-
dry-equalizer (~> 0.2)
|
66
|
+
dry-core (~> 1.0, < 2)
|
74
67
|
dry-initializer (~> 3.0)
|
75
|
-
dry-schema (
|
76
|
-
|
68
|
+
dry-schema (>= 1.12, < 2)
|
69
|
+
zeitwerk (~> 2.6)
|
70
|
+
factory_bot (6.2.1)
|
77
71
|
activesupport (>= 5.0.0)
|
78
|
-
faraday (1.
|
72
|
+
faraday (1.10.3)
|
79
73
|
faraday-em_http (~> 1.0)
|
80
74
|
faraday-em_synchrony (~> 1.0)
|
81
75
|
faraday-excon (~> 1.1)
|
76
|
+
faraday-httpclient (~> 1.0)
|
77
|
+
faraday-multipart (~> 1.0)
|
82
78
|
faraday-net_http (~> 1.0)
|
83
|
-
faraday-net_http_persistent (~> 1.
|
84
|
-
|
79
|
+
faraday-net_http_persistent (~> 1.0)
|
80
|
+
faraday-patron (~> 1.0)
|
81
|
+
faraday-rack (~> 1.0)
|
82
|
+
faraday-retry (~> 1.0)
|
85
83
|
ruby2_keywords (>= 0.0.4)
|
86
|
-
faraday-detailed_logger (2.
|
87
|
-
faraday (>= 0.
|
84
|
+
faraday-detailed_logger (2.5.0)
|
85
|
+
faraday (>= 0.16, < 3)
|
88
86
|
faraday-em_http (1.0.0)
|
89
87
|
faraday-em_synchrony (1.0.0)
|
90
88
|
faraday-excon (1.1.0)
|
89
|
+
faraday-httpclient (1.0.1)
|
90
|
+
faraday-multipart (1.0.4)
|
91
|
+
multipart-post (~> 2)
|
91
92
|
faraday-net_http (1.0.1)
|
92
|
-
faraday-net_http_persistent (1.
|
93
|
-
|
93
|
+
faraday-net_http_persistent (1.2.0)
|
94
|
+
faraday-patron (1.0.0)
|
95
|
+
faraday-rack (1.0.0)
|
96
|
+
faraday-retry (1.0.3)
|
97
|
+
faraday_middleware (1.2.0)
|
94
98
|
faraday (~> 1.0)
|
95
99
|
fingerprintable (1.2.1)
|
96
100
|
colorize
|
97
101
|
hashdiff (1.0.1)
|
98
|
-
|
102
|
+
hashie (5.0.0)
|
103
|
+
i18n (1.12.0)
|
99
104
|
concurrent-ruby (~> 1.0)
|
100
|
-
|
101
|
-
|
102
|
-
|
105
|
+
ipaddr (1.2.5)
|
106
|
+
json (2.6.3)
|
107
|
+
jwt (2.7.0)
|
108
|
+
ledger_sync (2.4.4)
|
103
109
|
activemodel
|
104
|
-
|
105
|
-
dry-schema
|
106
|
-
dry-validation
|
110
|
+
dotenv
|
111
|
+
dry-schema
|
112
|
+
dry-validation
|
107
113
|
faraday
|
108
114
|
faraday-detailed_logger
|
109
115
|
faraday_middleware
|
@@ -111,99 +117,111 @@ GEM
|
|
111
117
|
nokogiri
|
112
118
|
openssl (~> 2.2.0)
|
113
119
|
pd_ruby
|
114
|
-
rack (
|
120
|
+
rack (>= 2.2.3, < 3.1.0)
|
121
|
+
rainbow (~> 3.0)
|
115
122
|
resonad
|
116
123
|
simply_serializable (>= 1.5.1)
|
117
|
-
|
118
|
-
|
124
|
+
mini_portile2 (2.8.1)
|
125
|
+
minitest (5.17.0)
|
119
126
|
multi_xml (0.6.0)
|
120
|
-
multipart-post (2.
|
121
|
-
nokogiri (1.
|
127
|
+
multipart-post (2.3.0)
|
128
|
+
nokogiri (1.14.2)
|
129
|
+
mini_portile2 (~> 2.8.0)
|
122
130
|
racc (~> 1.4)
|
123
|
-
oauth2 (
|
124
|
-
faraday (>= 0.
|
131
|
+
oauth2 (2.0.9)
|
132
|
+
faraday (>= 0.17.3, < 3.0)
|
125
133
|
jwt (>= 1.0, < 3.0)
|
126
|
-
multi_json (~> 1.3)
|
127
134
|
multi_xml (~> 0.5)
|
128
|
-
rack (>= 1.2, <
|
129
|
-
|
130
|
-
|
131
|
-
|
135
|
+
rack (>= 1.2, < 4)
|
136
|
+
snaky_hash (~> 2.0)
|
137
|
+
version_gem (~> 1.1)
|
138
|
+
openssl (2.2.3)
|
139
|
+
ipaddr
|
140
|
+
parallel (1.22.1)
|
141
|
+
parser (3.2.1.0)
|
132
142
|
ast (~> 2.4.1)
|
133
143
|
pd_ruby (0.2.3)
|
134
144
|
colorize
|
135
|
-
public_suffix (
|
136
|
-
racc (1.
|
137
|
-
rack (
|
138
|
-
rainbow (3.
|
139
|
-
rake (13.0.
|
140
|
-
regexp_parser (2.
|
145
|
+
public_suffix (5.0.1)
|
146
|
+
racc (1.6.2)
|
147
|
+
rack (3.0.4.1)
|
148
|
+
rainbow (3.1.1)
|
149
|
+
rake (13.0.6)
|
150
|
+
regexp_parser (2.7.0)
|
141
151
|
resonad (1.4.0)
|
142
152
|
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.
|
153
|
+
rspec (3.12.0)
|
154
|
+
rspec-core (~> 3.12.0)
|
155
|
+
rspec-expectations (~> 3.12.0)
|
156
|
+
rspec-mocks (~> 3.12.0)
|
157
|
+
rspec-core (3.12.1)
|
158
|
+
rspec-support (~> 3.12.0)
|
159
|
+
rspec-expectations (3.12.2)
|
150
160
|
diff-lcs (>= 1.2.0, < 2.0)
|
151
|
-
rspec-support (~> 3.
|
152
|
-
rspec-mocks (3.
|
161
|
+
rspec-support (~> 3.12.0)
|
162
|
+
rspec-mocks (3.12.3)
|
153
163
|
diff-lcs (>= 1.2.0, < 2.0)
|
154
|
-
rspec-support (~> 3.
|
155
|
-
rspec-support (3.
|
156
|
-
rubocop (1.
|
164
|
+
rspec-support (~> 3.12.0)
|
165
|
+
rspec-support (3.12.0)
|
166
|
+
rubocop (1.45.1)
|
167
|
+
json (~> 2.3)
|
157
168
|
parallel (~> 1.10)
|
158
|
-
parser (>= 3.
|
169
|
+
parser (>= 3.2.0.0)
|
159
170
|
rainbow (>= 2.2.2, < 4.0)
|
160
171
|
regexp_parser (>= 1.8, < 3.0)
|
161
|
-
rexml
|
162
|
-
rubocop-ast (>= 1.
|
172
|
+
rexml (>= 3.2.5, < 4.0)
|
173
|
+
rubocop-ast (>= 1.24.1, < 2.0)
|
163
174
|
ruby-progressbar (~> 1.7)
|
164
|
-
unicode-display_width (>=
|
165
|
-
rubocop-ast (1.
|
166
|
-
parser (>= 3.
|
175
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
176
|
+
rubocop-ast (1.26.0)
|
177
|
+
parser (>= 3.2.1.0)
|
167
178
|
ruby-progressbar (1.11.0)
|
168
|
-
ruby2_keywords (0.0.
|
169
|
-
simplecov (0.
|
179
|
+
ruby2_keywords (0.0.5)
|
180
|
+
simplecov (0.22.0)
|
170
181
|
docile (~> 1.1)
|
171
|
-
|
172
|
-
|
173
|
-
simplecov-html (0.
|
182
|
+
simplecov-html (~> 0.11)
|
183
|
+
simplecov_json_formatter (~> 0.1)
|
184
|
+
simplecov-html (0.12.3)
|
185
|
+
simplecov-lcov (0.8.0)
|
186
|
+
simplecov_json_formatter (0.1.4)
|
174
187
|
simply_serializable (1.5.1)
|
175
188
|
fingerprintable (>= 1.2.1)
|
189
|
+
snaky_hash (2.0.1)
|
190
|
+
hashie
|
191
|
+
version_gem (~> 1.1, >= 1.1.1)
|
176
192
|
sync (0.5.0)
|
177
193
|
term-ansicolor (1.7.1)
|
178
194
|
tins (~> 1.0)
|
179
|
-
thor (1.1
|
180
|
-
tins (1.
|
195
|
+
thor (1.2.1)
|
196
|
+
tins (1.32.1)
|
181
197
|
sync
|
182
|
-
tzinfo (2.0.
|
198
|
+
tzinfo (2.0.6)
|
183
199
|
concurrent-ruby (~> 1.0)
|
184
|
-
unicode-display_width (2.
|
185
|
-
|
186
|
-
|
200
|
+
unicode-display_width (2.4.2)
|
201
|
+
version_gem (1.1.1)
|
202
|
+
webmock (3.18.1)
|
203
|
+
addressable (>= 2.8.0)
|
187
204
|
crack (>= 0.3.2)
|
188
205
|
hashdiff (>= 0.4.0, < 2.0.0)
|
189
|
-
zeitwerk (2.
|
206
|
+
zeitwerk (2.6.7)
|
190
207
|
|
191
208
|
PLATFORMS
|
192
209
|
ruby
|
193
210
|
|
194
211
|
DEPENDENCIES
|
195
212
|
awesome_print
|
196
|
-
bump (~> 0.9.0)
|
197
213
|
bundler (~> 2.1)
|
198
214
|
byebug
|
199
215
|
climate_control
|
200
|
-
|
201
|
-
factory_bot
|
216
|
+
coveralls_reborn
|
217
|
+
factory_bot
|
202
218
|
ledger_sync-netsuite!
|
203
219
|
rake (~> 13.0)
|
204
220
|
rspec (~> 3.2)
|
205
221
|
rubocop
|
222
|
+
simplecov
|
223
|
+
simplecov-lcov
|
206
224
|
webmock
|
207
225
|
|
208
226
|
BUNDLED WITH
|
209
|
-
2.
|
227
|
+
2.2.22
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.required_ruby_version = '>= 2.5.8'
|
14
14
|
|
15
15
|
spec.summary = 'Sync common objects to accounting software.'
|
16
|
-
spec.description = 'LedgerSync is a simple library that allows you to sync common objects to popular accounting '\
|
16
|
+
spec.description = 'LedgerSync is a simple library that allows you to sync common objects to popular accounting ' \
|
17
17
|
'software like QuickBooks Online, NetSuite, NetSuite, etc.'
|
18
18
|
spec.homepage = 'https://www.ledgersync.dev'
|
19
19
|
|
@@ -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('
|
35
|
-
spec.add_development_dependency('factory_bot'
|
33
|
+
spec.add_development_dependency('coveralls_reborn')
|
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.4')
|
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
|
@@ -24,12 +24,13 @@ module LedgerSync
|
|
24
24
|
'deferred_expense' => 'DeferExpense',
|
25
25
|
'unbilled_recievable' => 'UnbilledRec',
|
26
26
|
'deferred_revenue' => 'DeferRevenue',
|
27
|
-
'non_posting' => 'NonPosting'
|
27
|
+
'non_posting' => 'NonPosting',
|
28
|
+
'statistical' => 'Stat'
|
28
29
|
}.freeze
|
29
30
|
|
30
31
|
attribute :name, type: Type::String
|
31
32
|
attribute :classification, type: Type::String
|
32
|
-
attribute :account_type, type: Type::StringFromSet.new(values: TYPES.keys)
|
33
|
+
attribute :account_type, type: Type::StringFromSet.new({ values: TYPES.keys })
|
33
34
|
attribute :account_sub_type, type: Type::String
|
34
35
|
attribute :number, type: Type::String
|
35
36
|
attribute :description, type: Type::String
|
@@ -3,11 +3,11 @@
|
|
3
3
|
# :nocov:
|
4
4
|
module LedgerSync
|
5
5
|
module NetSuite
|
6
|
-
VERSION = '0.
|
6
|
+
VERSION = '0.4.2'
|
7
7
|
|
8
8
|
def self.version
|
9
9
|
if ENV['PRE_RELEASE']
|
10
|
-
"#{VERSION}.pre.#{ENV
|
10
|
+
"#{VERSION}.pre.#{ENV.fetch('GITHUB_RUN_NUMBER', nil)}"
|
11
11
|
else
|
12
12
|
VERSION
|
13
13
|
end
|
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.
|
4
|
+
version: 0.4.2
|
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: 2023-02-17 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
|
@@ -81,33 +67,33 @@ dependencies:
|
|
81
67
|
- !ruby/object:Gem::Version
|
82
68
|
version: '0'
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
70
|
+
name: coveralls_reborn
|
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.4'
|
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.4'
|
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:
|