iron_bank 5.3.2 → 5.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +40 -32
- data/.rubocop.yml +1 -0
- data/.ruby-version +1 -1
- data/Gemfile.lock +52 -54
- data/Rakefile +4 -4
- data/bin/console +5 -5
- data/iron_bank.gemspec +1 -1
- data/lib/iron_bank/local_records.rb +1 -1
- data/lib/iron_bank/query_builder.rb +1 -1
- data/lib/iron_bank/schema.rb +1 -1
- data/lib/iron_bank/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 853859a45aaabdcfc831dca27a70882b28aa19f68b214a666cb0830ce4fa702f
|
4
|
+
data.tar.gz: 3c755dd00fad7455b402dd04ae7f649f554fce6127608e11f28c2e16f31c85d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50f8865e78282701c705fd9e5b1b0f9978f152d54b7594784806153d9ffc3654d57871f6a9c4dbe1917611853915e27ff16e9b893e2bc2d848a27f963596aa32
|
7
|
+
data.tar.gz: 41e18fea0a4047734d49c8a495dfb28c2c13b7a40ef4a4737f6ccf909e4894bca44048124793cb9924ed375000e12245be67eefe559967f943b1391f7f2024f3
|
data/.github/workflows/ci.yml
CHANGED
@@ -1,49 +1,57 @@
|
|
1
1
|
name: CI
|
2
2
|
|
3
3
|
on:
|
4
|
-
push:
|
5
|
-
branches:
|
6
|
-
- main
|
7
4
|
pull_request:
|
5
|
+
push:
|
8
6
|
branches:
|
9
7
|
- main
|
10
8
|
|
11
9
|
jobs:
|
12
|
-
|
13
|
-
name: Ruby
|
14
|
-
|
10
|
+
specs:
|
11
|
+
name: Ruby ${{ matrix.ruby-version }}
|
12
|
+
runs-on: ubuntu-latest
|
15
13
|
strategy:
|
16
14
|
matrix:
|
17
|
-
ruby:
|
18
|
-
- 2.
|
19
|
-
-
|
20
|
-
- 3.
|
21
|
-
|
22
|
-
runs-on: ubuntu-latest
|
23
|
-
|
15
|
+
ruby-version:
|
16
|
+
- '2.7'
|
17
|
+
- '3.0'
|
18
|
+
- '3.1'
|
19
|
+
- '3.2'
|
24
20
|
steps:
|
25
|
-
- uses: zendesk/checkout@
|
26
|
-
|
21
|
+
- uses: zendesk/checkout@v3
|
27
22
|
- uses: zendesk/setup-ruby@v1
|
28
23
|
with:
|
29
|
-
ruby-version: ${{ matrix.ruby }}
|
30
|
-
|
31
|
-
-
|
32
|
-
|
33
|
-
path: vendor/bundle
|
34
|
-
key: ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
|
35
|
-
restore-keys: |
|
36
|
-
${{ runner.os }}-gems-
|
37
|
-
|
38
|
-
- name: Install Dependencies
|
39
|
-
run: |
|
40
|
-
bundle config deployment true
|
41
|
-
bundle config path vendor/bundle
|
42
|
-
bundle install --jobs 4
|
43
|
-
|
44
|
-
- name: Run Tests
|
45
|
-
run: bundle exec rake
|
24
|
+
ruby-version: ${{ matrix.ruby-version }}
|
25
|
+
bundler-cache: true
|
26
|
+
- name: Run Specs
|
27
|
+
run: bundle exec rake spec
|
46
28
|
env:
|
47
29
|
ZUORA_CLIENT_ID: something
|
48
30
|
ZUORA_CLIENT_SECRET: secret
|
49
31
|
ZUORA_DOMAIN: rest.apisandbox.zuora.com
|
32
|
+
|
33
|
+
specs_successful:
|
34
|
+
name: Specs passing?
|
35
|
+
needs: specs
|
36
|
+
if: always()
|
37
|
+
runs-on: ubuntu-latest
|
38
|
+
steps:
|
39
|
+
- run: |
|
40
|
+
if ${{ needs.specs.result == 'success' }}
|
41
|
+
then
|
42
|
+
echo "All specs pass"
|
43
|
+
else
|
44
|
+
echo "Some specs failed"
|
45
|
+
false
|
46
|
+
fi
|
47
|
+
|
48
|
+
lint:
|
49
|
+
runs-on: ubuntu-latest
|
50
|
+
steps:
|
51
|
+
- uses: zendesk/checkout@v3
|
52
|
+
- name: Set up Ruby
|
53
|
+
uses: zendesk/setup-ruby@v1
|
54
|
+
with:
|
55
|
+
ruby-version: "3.0"
|
56
|
+
bundler-cache: true
|
57
|
+
- run: bundle exec rake rubocop
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.7.7
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
iron_bank (5.
|
4
|
+
iron_bank (5.4.0)
|
5
5
|
faraday (~> 1)
|
6
6
|
faraday_middleware (~> 1)
|
7
7
|
nokogiri (~> 1)
|
@@ -9,23 +9,22 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
activesupport (
|
12
|
+
activesupport (7.0.4.3)
|
13
13
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
14
|
i18n (>= 1.6, < 2)
|
15
15
|
minitest (>= 5.1)
|
16
16
|
tzinfo (~> 2.0)
|
17
|
-
zeitwerk (~> 2.3)
|
18
17
|
ast (2.4.2)
|
19
18
|
bump (0.10.0)
|
20
19
|
byebug (11.1.3)
|
21
20
|
coderay (1.1.3)
|
22
|
-
concurrent-ruby (1.
|
23
|
-
diff-lcs (1.
|
24
|
-
docile (1.
|
25
|
-
dotenv (2.
|
26
|
-
factory_bot (6.1
|
21
|
+
concurrent-ruby (1.2.2)
|
22
|
+
diff-lcs (1.5.0)
|
23
|
+
docile (1.4.0)
|
24
|
+
dotenv (2.8.1)
|
25
|
+
factory_bot (6.2.1)
|
27
26
|
activesupport (>= 5.0.0)
|
28
|
-
faraday (1.10.
|
27
|
+
faraday (1.10.3)
|
29
28
|
faraday-em_http (~> 1.0)
|
30
29
|
faraday-em_synchrony (~> 1.0)
|
31
30
|
faraday-excon (~> 1.1)
|
@@ -50,78 +49,77 @@ GEM
|
|
50
49
|
faraday-retry (1.0.3)
|
51
50
|
faraday_middleware (1.2.0)
|
52
51
|
faraday (~> 1.0)
|
53
|
-
i18n (1.
|
52
|
+
i18n (1.13.0)
|
54
53
|
concurrent-ruby (~> 1.0)
|
54
|
+
json (2.6.3)
|
55
55
|
kwalify (0.7.2)
|
56
56
|
method_source (1.0.0)
|
57
|
-
mini_portile2 (2.8.
|
58
|
-
minitest (5.
|
59
|
-
multipart-post (2.
|
60
|
-
nokogiri (1.
|
57
|
+
mini_portile2 (2.8.2)
|
58
|
+
minitest (5.18.0)
|
59
|
+
multipart-post (2.3.0)
|
60
|
+
nokogiri (1.14.3)
|
61
61
|
mini_portile2 (~> 2.8.0)
|
62
62
|
racc (~> 1.4)
|
63
|
-
parallel (1.
|
64
|
-
parser (3.
|
63
|
+
parallel (1.23.0)
|
64
|
+
parser (3.2.2.1)
|
65
65
|
ast (~> 2.4.1)
|
66
|
-
pry (0.
|
66
|
+
pry (0.14.2)
|
67
67
|
coderay (~> 1.1)
|
68
68
|
method_source (~> 1.0)
|
69
|
-
pry-byebug (3.
|
69
|
+
pry-byebug (3.10.1)
|
70
70
|
byebug (~> 11.0)
|
71
|
-
pry (
|
72
|
-
|
73
|
-
racc (1.6.1)
|
71
|
+
pry (>= 0.13, < 0.15)
|
72
|
+
racc (1.6.2)
|
74
73
|
rainbow (3.1.1)
|
75
|
-
rake (13.0.
|
76
|
-
reek (6.
|
74
|
+
rake (13.0.6)
|
75
|
+
reek (6.1.4)
|
77
76
|
kwalify (~> 0.7.0)
|
78
|
-
parser (~> 3.
|
79
|
-
psych (~> 3.1)
|
77
|
+
parser (~> 3.2.0)
|
80
78
|
rainbow (>= 2.0, < 4.0)
|
81
|
-
regexp_parser (2.
|
79
|
+
regexp_parser (2.8.0)
|
82
80
|
rexml (3.2.5)
|
83
|
-
rspec (3.
|
84
|
-
rspec-core (~> 3.
|
85
|
-
rspec-expectations (~> 3.
|
86
|
-
rspec-mocks (~> 3.
|
87
|
-
rspec-core (3.
|
88
|
-
rspec-support (~> 3.
|
89
|
-
rspec-expectations (3.
|
81
|
+
rspec (3.12.0)
|
82
|
+
rspec-core (~> 3.12.0)
|
83
|
+
rspec-expectations (~> 3.12.0)
|
84
|
+
rspec-mocks (~> 3.12.0)
|
85
|
+
rspec-core (3.12.2)
|
86
|
+
rspec-support (~> 3.12.0)
|
87
|
+
rspec-expectations (3.12.3)
|
90
88
|
diff-lcs (>= 1.2.0, < 2.0)
|
91
|
-
rspec-support (~> 3.
|
92
|
-
rspec-mocks (3.
|
89
|
+
rspec-support (~> 3.12.0)
|
90
|
+
rspec-mocks (3.12.5)
|
93
91
|
diff-lcs (>= 1.2.0, < 2.0)
|
94
|
-
rspec-support (~> 3.
|
95
|
-
rspec-support (3.
|
96
|
-
rubocop (1.
|
92
|
+
rspec-support (~> 3.12.0)
|
93
|
+
rspec-support (3.12.0)
|
94
|
+
rubocop (1.50.2)
|
95
|
+
json (~> 2.3)
|
97
96
|
parallel (~> 1.10)
|
98
|
-
parser (>= 3.
|
97
|
+
parser (>= 3.2.0.0)
|
99
98
|
rainbow (>= 2.2.2, < 4.0)
|
100
99
|
regexp_parser (>= 1.8, < 3.0)
|
101
|
-
rexml
|
102
|
-
rubocop-ast (>= 1.
|
100
|
+
rexml (>= 3.2.5, < 4.0)
|
101
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
103
102
|
ruby-progressbar (~> 1.7)
|
104
|
-
unicode-display_width (>=
|
105
|
-
rubocop-ast (1.
|
106
|
-
parser (>= 3.
|
107
|
-
rubocop-performance (1.
|
108
|
-
rubocop (>=
|
103
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
104
|
+
rubocop-ast (1.28.1)
|
105
|
+
parser (>= 3.2.1.0)
|
106
|
+
rubocop-performance (1.17.1)
|
107
|
+
rubocop (>= 1.7.0, < 2.0)
|
109
108
|
rubocop-ast (>= 0.4.0)
|
110
|
-
ruby-progressbar (1.
|
109
|
+
ruby-progressbar (1.13.0)
|
111
110
|
ruby2_keywords (0.0.5)
|
112
|
-
shoulda-matchers (4.5.
|
111
|
+
shoulda-matchers (4.5.1)
|
113
112
|
activesupport (>= 4.2.0)
|
114
|
-
simplecov (0.
|
113
|
+
simplecov (0.22.0)
|
115
114
|
docile (~> 1.1)
|
116
115
|
simplecov-html (~> 0.11)
|
117
116
|
simplecov_json_formatter (~> 0.1)
|
118
117
|
simplecov-html (0.12.3)
|
119
|
-
simplecov_json_formatter (0.1.
|
120
|
-
timecop (0.9.
|
121
|
-
tzinfo (2.0.
|
118
|
+
simplecov_json_formatter (0.1.4)
|
119
|
+
timecop (0.9.6)
|
120
|
+
tzinfo (2.0.6)
|
122
121
|
concurrent-ruby (~> 1.0)
|
123
|
-
unicode-display_width (2.
|
124
|
-
zeitwerk (2.4.2)
|
122
|
+
unicode-display_width (2.4.2)
|
125
123
|
|
126
124
|
PLATFORMS
|
127
125
|
ruby
|
data/Rakefile
CHANGED
@@ -42,10 +42,10 @@ def setup_iron_bank
|
|
42
42
|
require "iron_bank"
|
43
43
|
|
44
44
|
IronBank.configure do |config|
|
45
|
-
config.client_id = ENV
|
46
|
-
config.client_secret = ENV
|
45
|
+
config.client_id = ENV.fetch("ZUORA_CLIENT_ID", nil)
|
46
|
+
config.client_secret = ENV.fetch("ZUORA_CLIENT_SECRET", nil)
|
47
47
|
config.auth_type = ENV.fetch("ZUORA_AUTH_TYPE", "token")
|
48
|
-
config.domain = ENV
|
49
|
-
config.excluded_fields_file = ENV
|
48
|
+
config.domain = ENV.fetch("ZUORA_DOMAIN", nil)
|
49
|
+
config.excluded_fields_file = ENV.fetch("ZUORA_EXCLUDED_FIELDS_FILE", nil)
|
50
50
|
end
|
51
51
|
end
|
data/bin/console
CHANGED
@@ -7,12 +7,12 @@ require "iron_bank"
|
|
7
7
|
require "pry-byebug"
|
8
8
|
|
9
9
|
IronBank.configure do |config|
|
10
|
-
config.client_id = ENV
|
11
|
-
config.client_secret = ENV
|
10
|
+
config.client_id = ENV.fetch("ZUORA_CLIENT_ID", nil)
|
11
|
+
config.client_secret = ENV.fetch("ZUORA_CLIENT_SECRET", nil)
|
12
12
|
config.auth_type = ENV.fetch("ZUORA_AUTH_TYPE", "token")
|
13
|
-
config.domain = ENV
|
14
|
-
config.excluded_fields_file = ENV
|
15
|
-
config.users_file = ENV
|
13
|
+
config.domain = ENV.fetch("ZUORA_DOMAIN", nil)
|
14
|
+
config.excluded_fields_file = ENV.fetch("ZUORA_EXCLUDED_FIELDS_FILE", nil)
|
15
|
+
config.users_file = ENV.fetch("ZUORA_USERS_FILE", nil)
|
16
16
|
end
|
17
17
|
|
18
18
|
Pry.start
|
data/iron_bank.gemspec
CHANGED
@@ -64,7 +64,7 @@ module IronBank
|
|
64
64
|
|
65
65
|
def ensure_range_single_condition
|
66
66
|
return if conditions.count <= 1
|
67
|
-
return unless conditions.values.any?
|
67
|
+
return unless conditions.values.any?(Array)
|
68
68
|
|
69
69
|
raise "Filter ranges must be used in isolation."
|
70
70
|
end
|
data/lib/iron_bank/schema.rb
CHANGED
data/lib/iron_bank/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iron_bank
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mickael Pham
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: exe
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2023-05-11 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: faraday
|
@@ -165,7 +165,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
165
165
|
requirements:
|
166
166
|
- - ">="
|
167
167
|
- !ruby/object:Gem::Version
|
168
|
-
version: '2.
|
168
|
+
version: '2.7'
|
169
169
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
171
|
- - ">="
|