ledger_sync-netsuite 0.5.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47a754744aecd65f4d0176a42948a250003fa88487e03f35c57be5abb1538938
4
- data.tar.gz: c64f9c4392b2d4b7fd728fd46e913b594111896e1e2f903db709f8060b9fe957
3
+ metadata.gz: 2b8d8c063f6172500a55b2c467e91d1e33f3917baf063236ccbba1023f9f5d3f
4
+ data.tar.gz: 4eac2d3363ada9aabf1e4c522cd018cc723ea882e40ec1550ff95f343f43a037
5
5
  SHA512:
6
- metadata.gz: 64c7ee3b3b0ea8cc199264110a73b8452626a1f49c4bcd8917e7eff4a8cc62e080db1a2993a05434a9ebf5b98a6ce01fd9045431601ef596303c56efe4e10693
7
- data.tar.gz: a7b4a422f16998f89a45b4f4c02ea539fa6e47443d7a9b5e86a77d6e58176870df492162f4a0e0e5fa6aaa4a430ff679cf3cfc014a44d398120e109bd008b2d4
6
+ metadata.gz: 47a0e8870735f7ec53981e760ee2bda2b3a9bbe4514d6d237c64a9e2e74712b1a70b7c8c82f9b206b18b0353c4a2bf104a7bcb960672041698299f2089e6cd87
7
+ data.tar.gz: 803e18ba4f8f6a3fab2e2928c791167f6312095f761d76dd87fe3a4414df8b09ce7902bb5213b0ada251b35997429c783333c7b61a8137336567d9c83074f9e3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ledger_sync-netsuite (0.5.0)
4
+ ledger_sync-netsuite (0.6.1)
5
5
  dotenv
6
6
  ledger_sync (>= 2.4)
7
7
  nokogiri
@@ -24,7 +24,7 @@ GEM
24
24
  byebug (11.1.3)
25
25
  climate_control (1.2.0)
26
26
  colorize (0.8.1)
27
- concurrent-ruby (1.2.0)
27
+ concurrent-ruby (1.2.2)
28
28
  coveralls_reborn (0.27.0)
29
29
  simplecov (~> 0.22.0)
30
30
  term-ansicolor (~> 1.7)
@@ -144,7 +144,7 @@ GEM
144
144
  colorize
145
145
  public_suffix (5.0.1)
146
146
  racc (1.6.2)
147
- rack (3.0.4.1)
147
+ rack (3.0.4.2)
148
148
  rainbow (3.1.1)
149
149
  rake (13.0.6)
150
150
  regexp_parser (2.7.0)
@@ -163,19 +163,19 @@ GEM
163
163
  diff-lcs (>= 1.2.0, < 2.0)
164
164
  rspec-support (~> 3.12.0)
165
165
  rspec-support (3.12.0)
166
- rubocop (1.45.1)
166
+ rubocop (1.47.0)
167
167
  json (~> 2.3)
168
168
  parallel (~> 1.10)
169
169
  parser (>= 3.2.0.0)
170
170
  rainbow (>= 2.2.2, < 4.0)
171
171
  regexp_parser (>= 1.8, < 3.0)
172
172
  rexml (>= 3.2.5, < 4.0)
173
- rubocop-ast (>= 1.24.1, < 2.0)
173
+ rubocop-ast (>= 1.26.0, < 2.0)
174
174
  ruby-progressbar (~> 1.7)
175
175
  unicode-display_width (>= 2.4.0, < 3.0)
176
- rubocop-ast (1.26.0)
176
+ rubocop-ast (1.27.0)
177
177
  parser (>= 3.2.1.0)
178
- ruby-progressbar (1.11.0)
178
+ ruby-progressbar (1.12.0)
179
179
  ruby2_keywords (0.0.5)
180
180
  simplecov (0.22.0)
181
181
  docile (~> 1.1)
@@ -10,7 +10,9 @@ module LedgerSync
10
10
  end
11
11
 
12
12
  def query_string
13
- "SELECT #{query_attributes.join(', ')} FROM #{query_table}"
13
+ ret = "SELECT #{query_attributes.join(', ')} FROM #{query_table}"
14
+ ret += " WHERE #{query}" if query.present?
15
+ ret
14
16
  end
15
17
 
16
18
  def query_table
@@ -3,7 +3,7 @@
3
3
  # :nocov:
4
4
  module LedgerSync
5
5
  module NetSuite
6
- VERSION = '0.5.0'
6
+ VERSION = '0.6.1'
7
7
 
8
8
  def self.version
9
9
  if ENV['PRE_RELEASE']
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.5.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Modern Treasury
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-02-21 00:00:00.000000000 Z
11
+ date: 2023-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: awesome_print