xe_client 1.0.0 → 1.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: faccd61a405fbd11dfb9873a31a602e8b6b088500d420061318d8dd4525eae9a
4
- data.tar.gz: ad0f22f7e5fd44f582a81250ef7415db193b0ccc066ac6de540e0a1f98a22463
3
+ metadata.gz: 20f681f8c0e2ed2fbb1e238ecdd5930c295508acc1df25858108de4a84ccd3de
4
+ data.tar.gz: 373c0dd0b1438adce69db45b03e77536db60a51a5e9d03a5d585bce10436a6f3
5
5
  SHA512:
6
- metadata.gz: e6d9a02af3aeee2f477861297ea8a5f7b26dc3b6f35a09c1c11cd9de0b8e3566a4a14f1203ef5c6e03819c6ddaab0131ecdab8d942c14d5732725ccc1e268653
7
- data.tar.gz: 45335dc7e9974c01744871f769043c4e4ef00bb9daf1301207c9c280217b8b3d7a90271c3a9e67f7ddefb76fbf7ab787d06446eb30d314ee8c23301719facf15
6
+ metadata.gz: 82b7195d5cae90ea703c1a20d8de2728534b66245d2024fb7759a33283b70f0e6a6895499de12a6cf0a2063fb86d53f1e5aebff4c6a2061388a8caef26770b59
7
+ data.tar.gz: c3f9406539b6866f28699370798328ac0e6bf658c7fbdcf21a3b30af4a475f3391b158a1a77c200893fbfcc03c682f025d50231b9914754acd797e6a36fe3b17
@@ -0,0 +1,39 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ master ]
13
+ pull_request:
14
+ branches: [ master ]
15
+
16
+ jobs:
17
+ test:
18
+
19
+ runs-on: ubuntu-latest
20
+ strategy:
21
+ matrix:
22
+ ruby-version: ['2.7']
23
+
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - name: Set up Ruby
27
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
28
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
29
+ # uses: ruby/setup-ruby@v1
30
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
31
+ with:
32
+ ruby-version: ${{ matrix.ruby-version }}
33
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
34
+ - name: Setup spec config
35
+ run: cp spec/config.yml{.sample,}
36
+ - name: Bundle appraisal
37
+ run: bundle exec appraisal install
38
+ - name: Run tests
39
+ run: bundle exec appraisal rspec
data/Appraisals ADDED
@@ -0,0 +1,7 @@
1
+ appraise "dry-validation-0.13.x" do
2
+ gem "dry-validation", "~> 0.13.0"
3
+ end
4
+
5
+ appraise "dry-validation-1.x" do
6
+ gem "dry-validation", "~> 1.0"
7
+ end
data/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ## [1.1.1] - 2022-04-06
6
+ ### Fixed
7
+ - undefined method 'size' for nil when running with dry-validation 0.13 (allow 0.13 to be installed)
8
+
9
+ ## [1.1.0] - 2021-06-15
10
+ ### Added
11
+ - Update `dry-validation` to 1.x
12
+
13
+ ## [1.0.1] - 2020-06-30
14
+ ### Fixed
15
+ - `#historic_rate_period`: Do not blow up if no rates
16
+
5
17
  ## [1.0.0] - 2020-06-30
6
18
  ### Changed
7
19
  - Changed `url` to `host` fot the XE API host (defaults to https://xecdapi.xe.com)
data/Gemfile CHANGED
@@ -5,3 +5,5 @@ gemspec
5
5
 
6
6
  gem "virtus-matchers", github: "g5/virtus-matchers"
7
7
  gem "pry"
8
+
9
+ gem "appraisal", github: "thoughtbot/appraisal", ref: "97079f000840338edde73ded08ed6687e0b5223a"
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "virtus-matchers", github: "g5/virtus-matchers"
6
+ gem "pry"
7
+ gem "dry-validation", "~> 0.13.0"
8
+
9
+ gemspec path: "../"
@@ -0,0 +1,154 @@
1
+ GIT
2
+ remote: https://github.com/g5/virtus-matchers.git
3
+ revision: d4a2d4b68ac938e7fa3c19bccd67bf2e854d21f5
4
+ specs:
5
+ virtus-matchers (0.4.0)
6
+ virtus (~> 1.0.0)
7
+
8
+ PATH
9
+ remote: ..
10
+ specs:
11
+ xe_client (1.1.0)
12
+ activemodel (>= 3.0)
13
+ activesupport (>= 3.0)
14
+ api_client_base (~> 1.9)
15
+ dry-validation (>= 0.13, < 2)
16
+ httparty
17
+ typhoeus (~> 1.0)
18
+ virtus (~> 1.0)
19
+
20
+ GEM
21
+ remote: https://rubygems.org/
22
+ specs:
23
+ activemodel (7.0.2.3)
24
+ activesupport (= 7.0.2.3)
25
+ activesupport (7.0.2.3)
26
+ concurrent-ruby (~> 1.0, >= 1.0.2)
27
+ i18n (>= 1.6, < 2)
28
+ minitest (>= 5.1)
29
+ tzinfo (~> 2.0)
30
+ addressable (2.8.0)
31
+ public_suffix (>= 2.0.2, < 5.0)
32
+ api_client_base (1.11.0)
33
+ activesupport (>= 3.0)
34
+ gem_config (>= 0.3.1)
35
+ virtus (>= 1.0)
36
+ appraisal (2.4.1)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ axiom-types (0.1.1)
41
+ descendants_tracker (~> 0.0.4)
42
+ ice_nine (~> 0.11.0)
43
+ thread_safe (~> 0.3, >= 0.3.1)
44
+ coderay (1.1.3)
45
+ coercible (1.0.0)
46
+ descendants_tracker (~> 0.0.1)
47
+ concurrent-ruby (1.1.10)
48
+ crack (0.4.5)
49
+ rexml
50
+ descendants_tracker (0.0.4)
51
+ thread_safe (~> 0.3, >= 0.3.1)
52
+ diff-lcs (1.5.0)
53
+ dry-configurable (0.14.0)
54
+ concurrent-ruby (~> 1.0)
55
+ dry-core (~> 0.6)
56
+ dry-container (0.9.0)
57
+ concurrent-ruby (~> 1.0)
58
+ dry-configurable (~> 0.13, >= 0.13.0)
59
+ dry-core (0.7.1)
60
+ concurrent-ruby (~> 1.0)
61
+ dry-equalizer (0.3.0)
62
+ dry-inflector (0.2.1)
63
+ dry-logic (0.6.1)
64
+ concurrent-ruby (~> 1.0)
65
+ dry-core (~> 0.2)
66
+ dry-equalizer (~> 0.2)
67
+ dry-types (0.14.1)
68
+ concurrent-ruby (~> 1.0)
69
+ dry-container (~> 0.3)
70
+ dry-core (~> 0.4, >= 0.4.4)
71
+ dry-equalizer (~> 0.2)
72
+ dry-inflector (~> 0.1, >= 0.1.2)
73
+ dry-logic (~> 0.5, >= 0.5)
74
+ dry-validation (0.13.3)
75
+ concurrent-ruby (~> 1.0)
76
+ dry-configurable (~> 0.1, >= 0.1.3)
77
+ dry-core (~> 0.2, >= 0.2.1)
78
+ dry-equalizer (~> 0.2)
79
+ dry-logic (~> 0.5, >= 0.5.0)
80
+ dry-types (~> 0.14.0)
81
+ equalizer (0.0.11)
82
+ ethon (0.15.0)
83
+ ffi (>= 1.15.0)
84
+ ffi (1.15.5)
85
+ gem_config (0.3.2)
86
+ hashdiff (1.0.1)
87
+ httparty (0.20.0)
88
+ mime-types (~> 3.0)
89
+ multi_xml (>= 0.5.2)
90
+ i18n (1.10.0)
91
+ concurrent-ruby (~> 1.0)
92
+ ice_nine (0.11.2)
93
+ method_source (1.0.0)
94
+ mime-types (3.4.1)
95
+ mime-types-data (~> 3.2015)
96
+ mime-types-data (3.2022.0105)
97
+ minitest (5.15.0)
98
+ multi_xml (0.6.0)
99
+ pry (0.14.1)
100
+ coderay (~> 1.1)
101
+ method_source (~> 1.0)
102
+ public_suffix (4.0.6)
103
+ rake (10.5.0)
104
+ rexml (3.2.5)
105
+ rspec (3.11.0)
106
+ rspec-core (~> 3.11.0)
107
+ rspec-expectations (~> 3.11.0)
108
+ rspec-mocks (~> 3.11.0)
109
+ rspec-core (3.11.0)
110
+ rspec-support (~> 3.11.0)
111
+ rspec-expectations (3.11.0)
112
+ diff-lcs (>= 1.2.0, < 2.0)
113
+ rspec-support (~> 3.11.0)
114
+ rspec-mocks (3.11.1)
115
+ diff-lcs (>= 1.2.0, < 2.0)
116
+ rspec-support (~> 3.11.0)
117
+ rspec-support (3.11.0)
118
+ shoulda-matchers (3.1.3)
119
+ activesupport (>= 4.0.0)
120
+ thor (1.2.1)
121
+ thread_safe (0.3.6)
122
+ typhoeus (1.4.0)
123
+ ethon (>= 0.9.0)
124
+ tzinfo (2.0.4)
125
+ concurrent-ruby (~> 1.0)
126
+ vcr (3.0.3)
127
+ virtus (1.0.5)
128
+ axiom-types (~> 0.1)
129
+ coercible (~> 1.0)
130
+ descendants_tracker (~> 0.0, >= 0.0.3)
131
+ equalizer (~> 0.0, >= 0.0.9)
132
+ webmock (2.3.2)
133
+ addressable (>= 2.3.6)
134
+ crack (>= 0.3.2)
135
+ hashdiff
136
+
137
+ PLATFORMS
138
+ ruby
139
+
140
+ DEPENDENCIES
141
+ appraisal (~> 2.4)
142
+ bundler (~> 2.0)
143
+ dry-validation (~> 0.13.0)
144
+ pry
145
+ rake (~> 10.0)
146
+ rspec (~> 3.0)
147
+ shoulda-matchers (~> 3.0)
148
+ vcr (~> 3.0)
149
+ virtus-matchers!
150
+ webmock (~> 2.0)
151
+ xe_client!
152
+
153
+ BUNDLED WITH
154
+ 2.2.28
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "virtus-matchers", github: "g5/virtus-matchers"
6
+ gem "pry"
7
+ gem "dry-validation", "~> 1.0"
8
+
9
+ gemspec path: "../"
@@ -0,0 +1,158 @@
1
+ GIT
2
+ remote: https://github.com/g5/virtus-matchers.git
3
+ revision: d4a2d4b68ac938e7fa3c19bccd67bf2e854d21f5
4
+ specs:
5
+ virtus-matchers (0.4.0)
6
+ virtus (~> 1.0.0)
7
+
8
+ PATH
9
+ remote: ..
10
+ specs:
11
+ xe_client (1.1.0)
12
+ activemodel (>= 3.0)
13
+ activesupport (>= 3.0)
14
+ api_client_base (~> 1.9)
15
+ dry-validation (>= 0.13, < 2)
16
+ httparty
17
+ typhoeus (~> 1.0)
18
+ virtus (~> 1.0)
19
+
20
+ GEM
21
+ remote: https://rubygems.org/
22
+ specs:
23
+ activemodel (7.0.2.3)
24
+ activesupport (= 7.0.2.3)
25
+ activesupport (7.0.2.3)
26
+ concurrent-ruby (~> 1.0, >= 1.0.2)
27
+ i18n (>= 1.6, < 2)
28
+ minitest (>= 5.1)
29
+ tzinfo (~> 2.0)
30
+ addressable (2.8.0)
31
+ public_suffix (>= 2.0.2, < 5.0)
32
+ api_client_base (1.11.0)
33
+ activesupport (>= 3.0)
34
+ gem_config (>= 0.3.1)
35
+ virtus (>= 1.0)
36
+ appraisal (2.4.1)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ axiom-types (0.1.1)
41
+ descendants_tracker (~> 0.0.4)
42
+ ice_nine (~> 0.11.0)
43
+ thread_safe (~> 0.3, >= 0.3.1)
44
+ coderay (1.1.3)
45
+ coercible (1.0.0)
46
+ descendants_tracker (~> 0.0.1)
47
+ concurrent-ruby (1.1.10)
48
+ crack (0.4.5)
49
+ rexml
50
+ descendants_tracker (0.0.4)
51
+ thread_safe (~> 0.3, >= 0.3.1)
52
+ diff-lcs (1.5.0)
53
+ dry-configurable (0.14.0)
54
+ concurrent-ruby (~> 1.0)
55
+ dry-core (~> 0.6)
56
+ dry-container (0.9.0)
57
+ concurrent-ruby (~> 1.0)
58
+ dry-configurable (~> 0.13, >= 0.13.0)
59
+ dry-core (0.7.1)
60
+ concurrent-ruby (~> 1.0)
61
+ dry-inflector (0.2.1)
62
+ dry-initializer (3.1.1)
63
+ dry-logic (1.2.0)
64
+ concurrent-ruby (~> 1.0)
65
+ dry-core (~> 0.5, >= 0.5)
66
+ dry-schema (1.9.1)
67
+ concurrent-ruby (~> 1.0)
68
+ dry-configurable (~> 0.13, >= 0.13.0)
69
+ dry-core (~> 0.5, >= 0.5)
70
+ dry-initializer (~> 3.0)
71
+ dry-logic (~> 1.0)
72
+ dry-types (~> 1.5)
73
+ dry-types (1.5.1)
74
+ concurrent-ruby (~> 1.0)
75
+ dry-container (~> 0.3)
76
+ dry-core (~> 0.5, >= 0.5)
77
+ dry-inflector (~> 0.1, >= 0.1.2)
78
+ dry-logic (~> 1.0, >= 1.0.2)
79
+ dry-validation (1.8.0)
80
+ concurrent-ruby (~> 1.0)
81
+ dry-container (~> 0.7, >= 0.7.1)
82
+ dry-core (~> 0.5, >= 0.5)
83
+ dry-initializer (~> 3.0)
84
+ dry-schema (~> 1.9, >= 1.9.1)
85
+ equalizer (0.0.11)
86
+ ethon (0.15.0)
87
+ ffi (>= 1.15.0)
88
+ ffi (1.15.5)
89
+ gem_config (0.3.2)
90
+ hashdiff (1.0.1)
91
+ httparty (0.20.0)
92
+ mime-types (~> 3.0)
93
+ multi_xml (>= 0.5.2)
94
+ i18n (1.10.0)
95
+ concurrent-ruby (~> 1.0)
96
+ ice_nine (0.11.2)
97
+ method_source (1.0.0)
98
+ mime-types (3.4.1)
99
+ mime-types-data (~> 3.2015)
100
+ mime-types-data (3.2022.0105)
101
+ minitest (5.15.0)
102
+ multi_xml (0.6.0)
103
+ pry (0.14.1)
104
+ coderay (~> 1.1)
105
+ method_source (~> 1.0)
106
+ public_suffix (4.0.6)
107
+ rake (10.5.0)
108
+ rexml (3.2.5)
109
+ rspec (3.11.0)
110
+ rspec-core (~> 3.11.0)
111
+ rspec-expectations (~> 3.11.0)
112
+ rspec-mocks (~> 3.11.0)
113
+ rspec-core (3.11.0)
114
+ rspec-support (~> 3.11.0)
115
+ rspec-expectations (3.11.0)
116
+ diff-lcs (>= 1.2.0, < 2.0)
117
+ rspec-support (~> 3.11.0)
118
+ rspec-mocks (3.11.1)
119
+ diff-lcs (>= 1.2.0, < 2.0)
120
+ rspec-support (~> 3.11.0)
121
+ rspec-support (3.11.0)
122
+ shoulda-matchers (3.1.3)
123
+ activesupport (>= 4.0.0)
124
+ thor (1.2.1)
125
+ thread_safe (0.3.6)
126
+ typhoeus (1.4.0)
127
+ ethon (>= 0.9.0)
128
+ tzinfo (2.0.4)
129
+ concurrent-ruby (~> 1.0)
130
+ vcr (3.0.3)
131
+ virtus (1.0.5)
132
+ axiom-types (~> 0.1)
133
+ coercible (~> 1.0)
134
+ descendants_tracker (~> 0.0, >= 0.0.3)
135
+ equalizer (~> 0.0, >= 0.0.9)
136
+ webmock (2.3.2)
137
+ addressable (>= 2.3.6)
138
+ crack (>= 0.3.2)
139
+ hashdiff
140
+
141
+ PLATFORMS
142
+ ruby
143
+
144
+ DEPENDENCIES
145
+ appraisal (~> 2.4)
146
+ bundler (~> 2.0)
147
+ dry-validation (~> 1.0)
148
+ pry
149
+ rake (~> 10.0)
150
+ rspec (~> 3.0)
151
+ shoulda-matchers (~> 3.0)
152
+ vcr (~> 3.0)
153
+ virtus-matchers!
154
+ webmock (~> 2.0)
155
+ xe_client!
156
+
157
+ BUNDLED WITH
158
+ 2.2.28
@@ -11,7 +11,11 @@ module XEClient
11
11
  end
12
12
 
13
13
  def default_to
14
- response_body[:to].each_with_object([]) do |(currency, quote_args), arr|
14
+ to = response_body[:to]
15
+
16
+ return [] if to.blank?
17
+
18
+ to.each_with_object([]) do |(currency, quote_args), arr|
15
19
  quote_args.each do |quote_arg|
16
20
  arr << Quote.new(quote_arg.merge(quotecurrency: currency))
17
21
  end
@@ -1,7 +1,11 @@
1
- module MyGem
2
- ConvertFromRequestSchema = Dry::Validation.Schema do
3
- required(:account_id).filled(:str?)
4
- required(:api_key).filled(:str?)
5
- required(:host).filled(:str?)
1
+ module XeClient
2
+ if not Dry::Validation.const_defined?("Schema")
3
+ class ConvertFromRequestSchema < Dry::Validation::Contract
4
+ params do
5
+ required(:account_id).filled(:str?)
6
+ required(:api_key).filled(:str?)
7
+ required(:host).filled(:str?)
8
+ end
9
+ end
6
10
  end
7
11
  end
@@ -1,3 +1,3 @@
1
1
  module XEClient
2
- VERSION = "1.0.0"
2
+ VERSION = "1.1.1"
3
3
  end
data/xe_client.gemspec CHANGED
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  spec.add_dependency "virtus", "~> 1.0"
32
32
  spec.add_dependency "httparty"
33
33
  spec.add_dependency "api_client_base", "~> 1.9"
34
- spec.add_dependency "dry-validation", "< 1.0"
34
+ spec.add_dependency "dry-validation", ">= 0.13", "< 2"
35
35
  spec.add_dependency "typhoeus", "~> 1.0"
36
36
 
37
37
  spec.add_development_dependency "bundler", "~> 2.0"
@@ -40,4 +40,5 @@ Gem::Specification.new do |spec|
40
40
  spec.add_development_dependency "shoulda-matchers", "~> 3.0"
41
41
  spec.add_development_dependency "vcr", "~> 3.0"
42
42
  spec.add_development_dependency "webmock", "~> 2.0"
43
+ spec.add_development_dependency "appraisal"
43
44
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xe_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon Tayag
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-30 00:00:00.000000000 Z
11
+ date: 2022-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -84,16 +84,22 @@ dependencies:
84
84
  name: dry-validation
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0.13'
87
90
  - - "<"
88
91
  - !ruby/object:Gem::Version
89
- version: '1.0'
92
+ version: '2'
90
93
  type: :runtime
91
94
  prerelease: false
92
95
  version_requirements: !ruby/object:Gem::Requirement
93
96
  requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0.13'
94
100
  - - "<"
95
101
  - !ruby/object:Gem::Version
96
- version: '1.0'
102
+ version: '2'
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: typhoeus
99
105
  requirement: !ruby/object:Gem::Requirement
@@ -192,6 +198,20 @@ dependencies:
192
198
  - - "~>"
193
199
  - !ruby/object:Gem::Version
194
200
  version: '2.0'
201
+ - !ruby/object:Gem::Dependency
202
+ name: appraisal
203
+ requirement: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ version: '0'
208
+ type: :development
209
+ prerelease: false
210
+ version_requirements: !ruby/object:Gem::Requirement
211
+ requirements:
212
+ - - ">="
213
+ - !ruby/object:Gem::Version
214
+ version: '0'
195
215
  description:
196
216
  email:
197
217
  - ramon.tayag@gmail.com
@@ -200,9 +220,10 @@ extensions: []
200
220
  extra_rdoc_files: []
201
221
  files:
202
222
  - ".envrc"
223
+ - ".github/workflows/ruby.yml"
203
224
  - ".gitignore"
204
225
  - ".rspec"
205
- - ".travis.yml"
226
+ - Appraisals
206
227
  - CHANGELOG.md
207
228
  - CODE_OF_CONDUCT.md
208
229
  - Gemfile
@@ -211,6 +232,11 @@ files:
211
232
  - Rakefile
212
233
  - bin/console
213
234
  - bin/setup
235
+ - gemfiles/.bundle/config
236
+ - gemfiles/dry_validation_0.13.x.gemfile
237
+ - gemfiles/dry_validation_0.13.x.gemfile.lock
238
+ - gemfiles/dry_validation_1.x.gemfile
239
+ - gemfiles/dry_validation_1.x.gemfile.lock
214
240
  - lib/xe_client.rb
215
241
  - lib/xe_client/client.rb
216
242
  - lib/xe_client/errors/authentication_error.rb
@@ -246,7 +272,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
246
272
  - !ruby/object:Gem::Version
247
273
  version: '0'
248
274
  requirements: []
249
- rubygems_version: 3.0.8
275
+ rubygems_version: 3.1.6
250
276
  signing_key:
251
277
  specification_version: 4
252
278
  summary: Ruby wrapper for XE's REST API
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.6.3
5
- before_install: gem install bundler:2.0
6
- before_script:
7
- - cp spec/config.yml{.sample,}