qbwc_requests 0.3.5 → 0.3.6

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
  SHA1:
3
- metadata.gz: 0b9a7aa265bf40dc3d57bc60db95c9b6f61ba117
4
- data.tar.gz: 901daa4921c5cac53fa562e1015dd0462f0b22dd
3
+ metadata.gz: db45e6fcd239e921988d7f2fd8a366551959fd8c
4
+ data.tar.gz: 5c38f2f0845bf353e4060ae9614813e82505b6cf
5
5
  SHA512:
6
- metadata.gz: e34c0d5ebd6cf606c2d442e975afe369f799a1f9d10d00a4d43a0dba10608f2542701c658517c86643d307886fb6cc0c2beefaffe956d4b9489cb2a4fe431728
7
- data.tar.gz: 793b7d2f7fc62aeb4521a577b362b767c787029351e7179203504b106e3871e913a508e853736e0ecbccd8da2c5fcc8389c9b8861130cf4a1fafbb4c7ea04b48
6
+ metadata.gz: 2de6f4027f73a95d2a6240e9d375121430a15456bd0cf902e637ec35ba1c8ab04f4824492c114b3ea05e55d1aebe60adb05c62e34c1126d186395cfd88435e6b
7
+ data.tar.gz: 5146a76350378e750225d26dde8488162d74b842b66f7fcfa09980d86d3a1dbcf80d0ddd0a243aaadeefb9300223e8da27fc5e8e2764f180a7940b08ca81793d
@@ -0,0 +1,9 @@
1
+ module QbwcRequests
2
+ module VendorType
3
+ module V07
4
+ class Query < QbwcRequests::Base
5
+ field :max_returned
6
+ end
7
+ end
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module QbwcRequests
2
- VERSION = "0.3.5"
2
+ VERSION = "0.3.6"
3
3
  end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe VendorTypeQbxml do
4
+
5
+ describe VendorTypeQbxml::Query do
6
+
7
+ context "V07" do
8
+ it_behaves_like 'queryable'
9
+ end
10
+
11
+ end
12
+
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qbwc_requests
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexandre Mondaini Calvão
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-15 00:00:00.000000000 Z
11
+ date: 2016-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: qbxml
@@ -157,6 +157,7 @@ files:
157
157
  - lib/qbwc_requests/vendor/v13/add.rb
158
158
  - lib/qbwc_requests/vendor/v13/mod.rb
159
159
  - lib/qbwc_requests/vendor/v13/query.rb
160
+ - lib/qbwc_requests/vendor_type/v07/query.rb
160
161
  - lib/qbwc_requests/version.rb
161
162
  - lib/qbwc_requests/xml_actions.rb
162
163
  - qbwc_requests.gemspec
@@ -234,6 +235,7 @@ files:
234
235
  - spec/support/expectations/xml_equal.rb
235
236
  - spec/support/shared_examples_for_xml_requests.rb
236
237
  - spec/vendor_qbxml_spec.rb
238
+ - spec/vendor_type_qbxml_spec.rb
237
239
  homepage: ''
238
240
  licenses:
239
241
  - MIT
@@ -280,3 +282,4 @@ test_files:
280
282
  - spec/support/expectations/xml_equal.rb
281
283
  - spec/support/shared_examples_for_xml_requests.rb
282
284
  - spec/vendor_qbxml_spec.rb
285
+ - spec/vendor_type_qbxml_spec.rb