ledger_sync-netsuite 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.env.test +14 -0
- data/.github/workflows/gem-workflow.yml +63 -0
- data/.gitignore +20 -0
- data/.overcommit.yml +29 -0
- data/.rubocop.yml +78 -0
- data/.rubocop_todo.yml +25 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +203 -0
- data/README.md +19 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/ledger_sync-netsuite.gemspec +44 -0
- data/lib/ledger_sync/netsuite.rb +13 -0
- data/lib/ledger_sync/netsuite/account/deserializer.rb +21 -0
- data/lib/ledger_sync/netsuite/account/operations/create.rb +26 -0
- data/lib/ledger_sync/netsuite/account/operations/find.rb +26 -0
- data/lib/ledger_sync/netsuite/account/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/account/searcher_deserializer.rb +27 -0
- data/lib/ledger_sync/netsuite/account/serializer.rb +19 -0
- data/lib/ledger_sync/netsuite/check/deserializer.rb +27 -0
- data/lib/ledger_sync/netsuite/check/operations/create.rb +25 -0
- data/lib/ledger_sync/netsuite/check/operations/delete.rb +25 -0
- data/lib/ledger_sync/netsuite/check/operations/find.rb +25 -0
- data/lib/ledger_sync/netsuite/check/operations/update.rb +25 -0
- data/lib/ledger_sync/netsuite/check/searcher.rb +13 -0
- data/lib/ledger_sync/netsuite/check/searcher_deserializer.rb +14 -0
- data/lib/ledger_sync/netsuite/check/serializer.rb +49 -0
- data/lib/ledger_sync/netsuite/check_line_item/deserializer.rb +16 -0
- data/lib/ledger_sync/netsuite/check_line_item/serializer.rb +24 -0
- data/lib/ledger_sync/netsuite/client.rb +186 -0
- data/lib/ledger_sync/netsuite/config.rb +12 -0
- data/lib/ledger_sync/netsuite/currency/deserializer.rb +21 -0
- data/lib/ledger_sync/netsuite/currency/operations/create.rb +23 -0
- data/lib/ledger_sync/netsuite/currency/operations/delete.rb +21 -0
- data/lib/ledger_sync/netsuite/currency/operations/find.rb +25 -0
- data/lib/ledger_sync/netsuite/currency/operations/update.rb +21 -0
- data/lib/ledger_sync/netsuite/currency/serializer.rb +19 -0
- data/lib/ledger_sync/netsuite/customer/deserializer.rb +20 -0
- data/lib/ledger_sync/netsuite/customer/operations/create.rb +24 -0
- data/lib/ledger_sync/netsuite/customer/operations/delete.rb +24 -0
- data/lib/ledger_sync/netsuite/customer/operations/find.rb +24 -0
- data/lib/ledger_sync/netsuite/customer/operations/update.rb +24 -0
- data/lib/ledger_sync/netsuite/customer/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/customer/searcher_deserializer.rb +16 -0
- data/lib/ledger_sync/netsuite/customer/serializer.rb +27 -0
- data/lib/ledger_sync/netsuite/customer_deposit/deserializer.rb +18 -0
- data/lib/ledger_sync/netsuite/customer_deposit/operations/create.rb +22 -0
- data/lib/ledger_sync/netsuite/customer_deposit/operations/delete.rb +22 -0
- data/lib/ledger_sync/netsuite/customer_deposit/operations/find.rb +22 -0
- data/lib/ledger_sync/netsuite/customer_deposit/operations/update.rb +22 -0
- data/lib/ledger_sync/netsuite/customer_deposit/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/customer_deposit/searcher_deserializer.rb +14 -0
- data/lib/ledger_sync/netsuite/customer_deposit/serializer.rb +23 -0
- data/lib/ledger_sync/netsuite/dashboard_url_helper.rb +26 -0
- data/lib/ledger_sync/netsuite/department/deserializer.rb +13 -0
- data/lib/ledger_sync/netsuite/department/operations/create.rb +23 -0
- data/lib/ledger_sync/netsuite/department/operations/delete.rb +23 -0
- data/lib/ledger_sync/netsuite/department/operations/find.rb +23 -0
- data/lib/ledger_sync/netsuite/department/operations/update.rb +23 -0
- data/lib/ledger_sync/netsuite/department/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/department/searcher_deserializer.rb +17 -0
- data/lib/ledger_sync/netsuite/department/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/deserializer.rb +16 -0
- data/lib/ledger_sync/netsuite/error.rb +17 -0
- data/lib/ledger_sync/netsuite/journal_entry/deserializer.rb +29 -0
- data/lib/ledger_sync/netsuite/journal_entry/operations/create.rb +24 -0
- data/lib/ledger_sync/netsuite/journal_entry/operations/delete.rb +24 -0
- data/lib/ledger_sync/netsuite/journal_entry/operations/find.rb +24 -0
- data/lib/ledger_sync/netsuite/journal_entry/operations/update.rb +28 -0
- data/lib/ledger_sync/netsuite/journal_entry/serializer.rb +34 -0
- data/lib/ledger_sync/netsuite/journal_entry_line_item/deserializer.rb +18 -0
- data/lib/ledger_sync/netsuite/journal_entry_line_item/serializer.rb +18 -0
- data/lib/ledger_sync/netsuite/ledger_class/deserializer.rb +13 -0
- data/lib/ledger_sync/netsuite/ledger_class/operations/create.rb +23 -0
- data/lib/ledger_sync/netsuite/ledger_class/operations/delete.rb +23 -0
- data/lib/ledger_sync/netsuite/ledger_class/operations/find.rb +23 -0
- data/lib/ledger_sync/netsuite/ledger_class/operations/update.rb +23 -0
- data/lib/ledger_sync/netsuite/ledger_class/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/ledger_class/searcher_deserializer.rb +17 -0
- data/lib/ledger_sync/netsuite/ledger_class/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/location/deserializer.rb +13 -0
- data/lib/ledger_sync/netsuite/location/operations/create.rb +19 -0
- data/lib/ledger_sync/netsuite/location/operations/delete.rb +19 -0
- data/lib/ledger_sync/netsuite/location/operations/find.rb +19 -0
- data/lib/ledger_sync/netsuite/location/operations/update.rb +19 -0
- data/lib/ledger_sync/netsuite/location/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/location/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/operation.rb +38 -0
- data/lib/ledger_sync/netsuite/operation/create.rb +56 -0
- data/lib/ledger_sync/netsuite/operation/delete.rb +47 -0
- data/lib/ledger_sync/netsuite/operation/find.rb +68 -0
- data/lib/ledger_sync/netsuite/operation/update.rb +59 -0
- data/lib/ledger_sync/netsuite/record/http_method.rb +31 -0
- data/lib/ledger_sync/netsuite/record/metadata.rb +107 -0
- data/lib/ledger_sync/netsuite/record/parameter.rb +18 -0
- data/lib/ledger_sync/netsuite/record/property.rb +20 -0
- data/lib/ledger_sync/netsuite/reference/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/resource.rb +8 -0
- data/lib/ledger_sync/netsuite/resources/account.rb +41 -0
- data/lib/ledger_sync/netsuite/resources/check.rb +21 -0
- data/lib/ledger_sync/netsuite/resources/check_line_item.rb +13 -0
- data/lib/ledger_sync/netsuite/resources/currency.rb +11 -0
- data/lib/ledger_sync/netsuite/resources/customer.rb +17 -0
- data/lib/ledger_sync/netsuite/resources/customer_deposit.rb +13 -0
- data/lib/ledger_sync/netsuite/resources/department.rb +14 -0
- data/lib/ledger_sync/netsuite/resources/deposit.rb +26 -0
- data/lib/ledger_sync/netsuite/resources/deposit_line_item.rb +23 -0
- data/lib/ledger_sync/netsuite/resources/invoice.rb +26 -0
- data/lib/ledger_sync/netsuite/resources/invoice_line_item.rb +19 -0
- data/lib/ledger_sync/netsuite/resources/item.rb +9 -0
- data/lib/ledger_sync/netsuite/resources/journal_entry.rb +24 -0
- data/lib/ledger_sync/netsuite/resources/journal_entry_line_item.rb +22 -0
- data/lib/ledger_sync/netsuite/resources/ledger_class.rb +14 -0
- data/lib/ledger_sync/netsuite/resources/location.rb +9 -0
- data/lib/ledger_sync/netsuite/resources/subsidiary.rb +10 -0
- data/lib/ledger_sync/netsuite/resources/vendor.rb +21 -0
- data/lib/ledger_sync/netsuite/searcher.rb +64 -0
- data/lib/ledger_sync/netsuite/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/subsidiary/deserializer.rb +15 -0
- data/lib/ledger_sync/netsuite/subsidiary/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/subsidiary/searcher_deserializer.rb +13 -0
- data/lib/ledger_sync/netsuite/subsidiary/serializer.rb +13 -0
- data/lib/ledger_sync/netsuite/token.rb +156 -0
- data/lib/ledger_sync/netsuite/type/deserializer_active_type.rb +30 -0
- data/lib/ledger_sync/netsuite/type/deserializer_customer_type.rb +33 -0
- data/lib/ledger_sync/netsuite/type/deserializer_entity_type.rb +28 -0
- data/lib/ledger_sync/netsuite/type/deserializer_subsidiary_type.rb +33 -0
- data/lib/ledger_sync/netsuite/vendor/deserializer.rb +28 -0
- data/lib/ledger_sync/netsuite/vendor/operations/create.rb +25 -0
- data/lib/ledger_sync/netsuite/vendor/operations/delete.rb +25 -0
- data/lib/ledger_sync/netsuite/vendor/operations/find.rb +25 -0
- data/lib/ledger_sync/netsuite/vendor/operations/update.rb +25 -0
- data/lib/ledger_sync/netsuite/vendor/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/vendor/searcher_deserializer.rb +19 -0
- data/lib/ledger_sync/netsuite/vendor/serializer.rb +28 -0
- data/lib/ledger_sync/netsuite/version.rb +17 -0
- data/license.txt +4 -0
- metadata +392 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 7bcf80a41574ebf9245acf177bfbdbe916a5ce9f390fcbb4f91cd000f625cfe4
|
4
|
+
data.tar.gz: db169b40aaea8934ce37711ff7afc6b165863e28858cdacbdc462f0d941d7383
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b3997ff0e57bb2b5270b25f9ee98ae0f32a4fa626fa42a01e81ddf4cb16282fcdd67a361b58f4efd798455fe39ad751022681333035ac51fe62fa272eeea2aa5
|
7
|
+
data.tar.gz: 69228e19197ea8ae308ee2fa495387409283430a115f615a4270435a8bcec0abd2957fd3cc819cdb577da370b08676aa8dc965e7b626dc4406a94644293c1bfe
|
data/.env.test
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
NETSUITE_ACCOUNT_ID=
|
2
|
+
NETSUITE_CONSUMER_KEY=
|
3
|
+
NETSUITE_CONSUMER_SECRET=
|
4
|
+
NETSUITE_TOKEN_ID=
|
5
|
+
NETSUITE_TOKEN_SECRET=
|
6
|
+
|
7
|
+
# For Testing
|
8
|
+
NETSUITE_KNOWN_VENDOR_ID=
|
9
|
+
NETSUITE_KNOWN_RECEIVABLES_ACCOUNT_ID=
|
10
|
+
NETSUITE_KNOWN_EXPENSES_ACCOUNT_ID=
|
11
|
+
NETSUITE_KNOWN_CHECKING_ACCOUNT_ID=
|
12
|
+
NETSUITE_KNOWN_CURRENCY_ID=
|
13
|
+
NETSUITE_KNOWN_SUBSIDIARY_ID=
|
14
|
+
NETSUITE_UNUSED_CURRENCY_ISO_CODE="ABC"
|
@@ -0,0 +1,63 @@
|
|
1
|
+
name: Test and Deploy
|
2
|
+
on: [push, pull_request]
|
3
|
+
jobs:
|
4
|
+
rubocop:
|
5
|
+
strategy:
|
6
|
+
matrix:
|
7
|
+
ruby-version: [2.6.3, 2.6.6, 2.7.1]
|
8
|
+
runs-on: [ubuntu-latest]
|
9
|
+
steps:
|
10
|
+
- uses: actions/checkout@v2
|
11
|
+
with:
|
12
|
+
persist-credentials: false
|
13
|
+
fetch-depth: 0
|
14
|
+
- name: Ruby Setup and Bundle
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: ${{ matrix.ruby-version }}
|
18
|
+
bundler-cache: true
|
19
|
+
- run: bundle exec rubocop
|
20
|
+
rspec:
|
21
|
+
strategy:
|
22
|
+
matrix:
|
23
|
+
ruby-version: [2.6.3, 2.6.6, 2.7.1]
|
24
|
+
runs-on: [ubuntu-latest]
|
25
|
+
steps:
|
26
|
+
- uses: actions/checkout@v2
|
27
|
+
with:
|
28
|
+
persist-credentials: false
|
29
|
+
fetch-depth: 0
|
30
|
+
- name: Ruby Setup and Bundle
|
31
|
+
uses: ruby/setup-ruby@v1
|
32
|
+
with:
|
33
|
+
ruby-version: ${{ matrix.ruby-version }}
|
34
|
+
bundler-cache: true
|
35
|
+
- name: rspec and report to coveralls
|
36
|
+
env:
|
37
|
+
COVERALLS_REPO_TOKEN: ${{ github.event_name == 'push' && secrets.COVERALLS_REPO_TOKEN }}
|
38
|
+
run: bundle exec rspec --order rand
|
39
|
+
publish:
|
40
|
+
runs-on: ubuntu-latest
|
41
|
+
needs: ['rubocop', 'rspec']
|
42
|
+
if: startsWith(github.ref, 'refs/tags/')
|
43
|
+
steps:
|
44
|
+
- name: Checkout
|
45
|
+
uses: actions/checkout@v2
|
46
|
+
with:
|
47
|
+
persist-credentials: false
|
48
|
+
fetch-depth: 0
|
49
|
+
- name: Ruby Setup and Bundle
|
50
|
+
uses: ruby/setup-ruby@v1
|
51
|
+
with:
|
52
|
+
ruby-version: 2.6.6
|
53
|
+
bundler-cache: true
|
54
|
+
- name: Publish to RubyGems
|
55
|
+
run: |
|
56
|
+
mkdir -p $HOME/.gem
|
57
|
+
touch $HOME/.gem/credentials
|
58
|
+
chmod 0600 $HOME/.gem/credentials
|
59
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
60
|
+
gem build *.gemspec
|
61
|
+
gem push *.gem
|
62
|
+
env:
|
63
|
+
GEM_HOST_API_KEY: "${{ secrets.RUBY_GEM_KEY }}"
|
data/.gitignore
ADDED
data/.overcommit.yml
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Use this file to configure the Overcommit hooks you wish to use. This will
|
2
|
+
# extend the default configuration defined in:
|
3
|
+
# https://github.com/sds/overcommit/blob/master/config/default.yml
|
4
|
+
#
|
5
|
+
# At the topmost level of this YAML file is a key representing type of hook
|
6
|
+
# being run (e.g. pre-commit, commit-msg, etc.). Within each type you can
|
7
|
+
# customize each hook, such as whether to only run it on certain files (via
|
8
|
+
# `include`), whether to only display output if it fails (via `quiet`), etc.
|
9
|
+
#
|
10
|
+
# For a complete list of hooks, see:
|
11
|
+
# https://github.com/sds/overcommit/tree/master/lib/overcommit/hook
|
12
|
+
#
|
13
|
+
# For a complete list of options that you can use to customize hooks, see:
|
14
|
+
# https://github.com/sds/overcommit#configuration
|
15
|
+
#
|
16
|
+
# Uncomment the following lines to make the configuration take effect.
|
17
|
+
gemfile: Gemfile
|
18
|
+
|
19
|
+
PreCommit:
|
20
|
+
RuboCop:
|
21
|
+
command: ['bundle', 'exec', 'rubocop']
|
22
|
+
enabled: true
|
23
|
+
on_warn: fail # Treat all warnings as failures
|
24
|
+
|
25
|
+
TrailingWhitespace:
|
26
|
+
enabled: true
|
27
|
+
|
28
|
+
LineEndings:
|
29
|
+
enabled: true
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
3
|
+
AllCops:
|
4
|
+
TargetRubyVersion: 2.5.8
|
5
|
+
NewCops: enable
|
6
|
+
|
7
|
+
Layout/LineLength:
|
8
|
+
Enabled: True
|
9
|
+
Max: 120
|
10
|
+
|
11
|
+
Style/HashEachMethods:
|
12
|
+
Enabled: True
|
13
|
+
|
14
|
+
Style/HashTransformKeys:
|
15
|
+
Enabled: True
|
16
|
+
|
17
|
+
Style/HashTransformValues:
|
18
|
+
Enabled: True
|
19
|
+
|
20
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
21
|
+
Enabled: True
|
22
|
+
|
23
|
+
Layout/SpaceAroundMethodCallOperator:
|
24
|
+
Enabled: True
|
25
|
+
|
26
|
+
Lint/DeprecatedOpenSSLConstant:
|
27
|
+
Enabled: True
|
28
|
+
|
29
|
+
Lint/DuplicateElsifCondition:
|
30
|
+
Enabled: True
|
31
|
+
|
32
|
+
Lint/MixedRegexpCaptureTypes:
|
33
|
+
Enabled: True
|
34
|
+
|
35
|
+
Lint/RaiseException:
|
36
|
+
Enabled: True
|
37
|
+
|
38
|
+
Lint/StructNewOverride:
|
39
|
+
Enabled: True
|
40
|
+
|
41
|
+
Style/AccessorGrouping:
|
42
|
+
Enabled: True
|
43
|
+
|
44
|
+
Style/ArrayCoercion:
|
45
|
+
Enabled: True
|
46
|
+
|
47
|
+
Style/BisectedAttrAccessor:
|
48
|
+
Enabled: True
|
49
|
+
|
50
|
+
Style/CaseLikeIf:
|
51
|
+
Enabled: True
|
52
|
+
|
53
|
+
Style/ExponentialNotation:
|
54
|
+
Enabled: True
|
55
|
+
|
56
|
+
Style/HashAsLastArrayItem:
|
57
|
+
Enabled: True
|
58
|
+
|
59
|
+
Style/HashLikeCase:
|
60
|
+
Enabled: True
|
61
|
+
|
62
|
+
Style/RedundantAssignment:
|
63
|
+
Enabled: True
|
64
|
+
|
65
|
+
Style/RedundantFetchBlock:
|
66
|
+
Enabled: True
|
67
|
+
|
68
|
+
Style/RedundantFileExtensionInRequire:
|
69
|
+
Enabled: True
|
70
|
+
|
71
|
+
Style/RedundantRegexpCharacterClass:
|
72
|
+
Enabled: True
|
73
|
+
|
74
|
+
Style/RedundantRegexpEscape:
|
75
|
+
Enabled: True
|
76
|
+
|
77
|
+
Style/SlicingWithRange:
|
78
|
+
Enabled: False
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2019-03-29 13:21:38 +0100 using RuboCop version 0.66.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
Metrics/AbcSize:
|
10
|
+
Enabled: False
|
11
|
+
|
12
|
+
Metrics/BlockLength:
|
13
|
+
Enabled: False
|
14
|
+
|
15
|
+
Metrics/ClassLength:
|
16
|
+
Enabled: False
|
17
|
+
|
18
|
+
Metrics/MethodLength:
|
19
|
+
Enabled: False
|
20
|
+
|
21
|
+
Metrics/ParameterLists:
|
22
|
+
Enabled: False
|
23
|
+
|
24
|
+
Style/Documentation:
|
25
|
+
Enabled: False
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,203 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
ledger_sync-netsuite (0.1.1)
|
5
|
+
dotenv
|
6
|
+
ledger_sync (= 1.8.0)
|
7
|
+
nokogiri
|
8
|
+
oauth2
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
activemodel (6.0.3.4)
|
14
|
+
activesupport (= 6.0.3.4)
|
15
|
+
activesupport (6.0.3.4)
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
+
i18n (>= 0.7, < 2)
|
18
|
+
minitest (~> 5.1)
|
19
|
+
tzinfo (~> 1.1)
|
20
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
21
|
+
addressable (2.7.0)
|
22
|
+
public_suffix (>= 2.0.2, < 5.0)
|
23
|
+
ast (2.4.1)
|
24
|
+
awesome_print (1.8.0)
|
25
|
+
bump (0.9.0)
|
26
|
+
byebug (11.1.3)
|
27
|
+
climate_control (0.2.0)
|
28
|
+
colorize (0.8.1)
|
29
|
+
concurrent-ruby (1.1.7)
|
30
|
+
coveralls (0.8.23)
|
31
|
+
json (>= 1.8, < 3)
|
32
|
+
simplecov (~> 0.16.1)
|
33
|
+
term-ansicolor (~> 1.3)
|
34
|
+
thor (>= 0.19.4, < 2.0)
|
35
|
+
tins (~> 1.6)
|
36
|
+
crack (0.4.4)
|
37
|
+
diff-lcs (1.4.4)
|
38
|
+
docile (1.3.2)
|
39
|
+
dotenv (2.7.6)
|
40
|
+
dry-configurable (0.12.1)
|
41
|
+
concurrent-ruby (~> 1.0)
|
42
|
+
dry-core (~> 0.5, >= 0.5.0)
|
43
|
+
dry-container (0.7.2)
|
44
|
+
concurrent-ruby (~> 1.0)
|
45
|
+
dry-configurable (~> 0.1, >= 0.1.3)
|
46
|
+
dry-core (0.5.0)
|
47
|
+
concurrent-ruby (~> 1.0)
|
48
|
+
dry-equalizer (0.3.0)
|
49
|
+
dry-inflector (0.2.0)
|
50
|
+
dry-initializer (3.0.4)
|
51
|
+
dry-logic (1.1.0)
|
52
|
+
concurrent-ruby (~> 1.0)
|
53
|
+
dry-core (~> 0.5, >= 0.5)
|
54
|
+
dry-schema (1.5.6)
|
55
|
+
concurrent-ruby (~> 1.0)
|
56
|
+
dry-configurable (~> 0.8, >= 0.8.3)
|
57
|
+
dry-core (~> 0.4)
|
58
|
+
dry-equalizer (~> 0.2)
|
59
|
+
dry-initializer (~> 3.0)
|
60
|
+
dry-logic (~> 1.0)
|
61
|
+
dry-types (~> 1.4)
|
62
|
+
dry-types (1.5.1)
|
63
|
+
concurrent-ruby (~> 1.0)
|
64
|
+
dry-container (~> 0.3)
|
65
|
+
dry-core (~> 0.5, >= 0.5)
|
66
|
+
dry-inflector (~> 0.1, >= 0.1.2)
|
67
|
+
dry-logic (~> 1.0, >= 1.0.2)
|
68
|
+
dry-validation (1.5.6)
|
69
|
+
concurrent-ruby (~> 1.0)
|
70
|
+
dry-container (~> 0.7, >= 0.7.1)
|
71
|
+
dry-core (~> 0.4)
|
72
|
+
dry-equalizer (~> 0.2)
|
73
|
+
dry-initializer (~> 3.0)
|
74
|
+
dry-schema (~> 1.5, >= 1.5.2)
|
75
|
+
factory_bot (6.1.0)
|
76
|
+
activesupport (>= 5.0.0)
|
77
|
+
faraday (1.3.0)
|
78
|
+
faraday-net_http (~> 1.0)
|
79
|
+
multipart-post (>= 1.2, < 3)
|
80
|
+
ruby2_keywords
|
81
|
+
faraday-detailed_logger (2.3.0)
|
82
|
+
faraday (>= 0.8, < 2)
|
83
|
+
faraday-net_http (1.0.1)
|
84
|
+
faraday_middleware (1.0.0)
|
85
|
+
faraday (~> 1.0)
|
86
|
+
fingerprintable (1.2.1)
|
87
|
+
colorize
|
88
|
+
hashdiff (1.0.1)
|
89
|
+
i18n (1.8.5)
|
90
|
+
concurrent-ruby (~> 1.0)
|
91
|
+
json (2.3.1)
|
92
|
+
jwt (2.2.2)
|
93
|
+
ledger_sync (1.8.0)
|
94
|
+
activemodel
|
95
|
+
colorize
|
96
|
+
dry-schema (~> 1.5.4)
|
97
|
+
dry-validation (~> 1.5.6)
|
98
|
+
faraday
|
99
|
+
faraday-detailed_logger
|
100
|
+
faraday_middleware
|
101
|
+
fingerprintable (>= 1.2.1)
|
102
|
+
nokogiri
|
103
|
+
openssl (~> 2.2.0)
|
104
|
+
pd_ruby
|
105
|
+
rack (~> 2.2.3)
|
106
|
+
resonad
|
107
|
+
simply_serializable (>= 1.5.1)
|
108
|
+
mini_portile2 (2.5.0)
|
109
|
+
minitest (5.14.2)
|
110
|
+
multi_json (1.15.0)
|
111
|
+
multi_xml (0.6.0)
|
112
|
+
multipart-post (2.1.1)
|
113
|
+
nokogiri (1.11.2)
|
114
|
+
mini_portile2 (~> 2.5.0)
|
115
|
+
racc (~> 1.4)
|
116
|
+
oauth2 (1.4.7)
|
117
|
+
faraday (>= 0.8, < 2.0)
|
118
|
+
jwt (>= 1.0, < 3.0)
|
119
|
+
multi_json (~> 1.3)
|
120
|
+
multi_xml (~> 0.5)
|
121
|
+
rack (>= 1.2, < 3)
|
122
|
+
openssl (2.2.0)
|
123
|
+
parallel (1.19.2)
|
124
|
+
parser (2.7.2.0)
|
125
|
+
ast (~> 2.4.1)
|
126
|
+
pd_ruby (0.2.3)
|
127
|
+
colorize
|
128
|
+
public_suffix (4.0.6)
|
129
|
+
racc (1.5.2)
|
130
|
+
rack (2.2.3)
|
131
|
+
rainbow (3.0.0)
|
132
|
+
rake (13.0.1)
|
133
|
+
regexp_parser (1.8.2)
|
134
|
+
resonad (1.4.0)
|
135
|
+
rexml (3.2.4)
|
136
|
+
rspec (3.10.0)
|
137
|
+
rspec-core (~> 3.10.0)
|
138
|
+
rspec-expectations (~> 3.10.0)
|
139
|
+
rspec-mocks (~> 3.10.0)
|
140
|
+
rspec-core (3.10.0)
|
141
|
+
rspec-support (~> 3.10.0)
|
142
|
+
rspec-expectations (3.10.0)
|
143
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
144
|
+
rspec-support (~> 3.10.0)
|
145
|
+
rspec-mocks (3.10.0)
|
146
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
147
|
+
rspec-support (~> 3.10.0)
|
148
|
+
rspec-support (3.10.0)
|
149
|
+
rubocop (1.2.0)
|
150
|
+
parallel (~> 1.10)
|
151
|
+
parser (>= 2.7.1.5)
|
152
|
+
rainbow (>= 2.2.2, < 4.0)
|
153
|
+
regexp_parser (>= 1.8)
|
154
|
+
rexml
|
155
|
+
rubocop-ast (>= 1.0.1)
|
156
|
+
ruby-progressbar (~> 1.7)
|
157
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
158
|
+
rubocop-ast (1.1.1)
|
159
|
+
parser (>= 2.7.1.5)
|
160
|
+
ruby-progressbar (1.10.1)
|
161
|
+
ruby2_keywords (0.0.4)
|
162
|
+
simplecov (0.16.1)
|
163
|
+
docile (~> 1.1)
|
164
|
+
json (>= 1.8, < 3)
|
165
|
+
simplecov-html (~> 0.10.0)
|
166
|
+
simplecov-html (0.10.2)
|
167
|
+
simply_serializable (1.5.1)
|
168
|
+
fingerprintable (>= 1.2.1)
|
169
|
+
sync (0.5.0)
|
170
|
+
term-ansicolor (1.7.1)
|
171
|
+
tins (~> 1.0)
|
172
|
+
thor (1.0.1)
|
173
|
+
thread_safe (0.3.6)
|
174
|
+
tins (1.26.0)
|
175
|
+
sync
|
176
|
+
tzinfo (1.2.7)
|
177
|
+
thread_safe (~> 0.1)
|
178
|
+
unicode-display_width (1.7.0)
|
179
|
+
webmock (3.9.4)
|
180
|
+
addressable (>= 2.3.6)
|
181
|
+
crack (>= 0.3.2)
|
182
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
183
|
+
zeitwerk (2.4.1)
|
184
|
+
|
185
|
+
PLATFORMS
|
186
|
+
ruby
|
187
|
+
|
188
|
+
DEPENDENCIES
|
189
|
+
awesome_print
|
190
|
+
bump (~> 0.9.0)
|
191
|
+
bundler (~> 2.1)
|
192
|
+
byebug
|
193
|
+
climate_control
|
194
|
+
coveralls (~> 0.8.23)
|
195
|
+
factory_bot (~> 6.1.0)
|
196
|
+
ledger_sync-netsuite!
|
197
|
+
rake (~> 13.0)
|
198
|
+
rspec (~> 3.2)
|
199
|
+
rubocop
|
200
|
+
webmock
|
201
|
+
|
202
|
+
BUNDLED WITH
|
203
|
+
2.1.4
|