avrolution 0.4.0 → 0.4.1.rc0

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: c70302532ce43c40bde2a34f0e4ad3eb56e47763
4
- data.tar.gz: d8c7efbe9e6c20aec26707b403257839438cc5b1
3
+ metadata.gz: bbbea70dfab730bce5aa134ecb699590db7c7857
4
+ data.tar.gz: c8cfb7e0c4a8336fe7446f09718a87f66b795be2
5
5
  SHA512:
6
- metadata.gz: 20749402e2b339317bedc0238d2194ebad61b0033017c48262a48b5326ff1d05ffa13eaa35bfaaf02441b60e6e7a6d126d4a15cb38bd061e4bfa4a36540c5e8b
7
- data.tar.gz: d498279af9f132d4190503399ced70e955e5a4287e11308fd8817b410587faa5be623599bc1b2a95b13d647a7e254e2f518f438fbcb0219a44e1d96bda335c78
6
+ metadata.gz: c73200a5109c06054fffcafc1e2980a76068e47347034caf25ac3aeb6f933d0d291b709e2580c79f33ec8e0a95b9d7c81316ca687510d6fd497f6db7dcd2b090
7
+ data.tar.gz: 32a5dca7d417a67d542bbd968aca5209ad0fb492973d6dd250548a281623fde116e31ebd19b8067af3c236c7ba24a864b11bc8b43d091f2ad60407a977bf519c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # avrolution
2
2
 
3
+ ## v0.4.1
4
+ - Exclude `vendor/bundle` under `Avrolution.root` when checking schema
5
+ compatibility.
6
+
3
7
  ## v0.4.0
4
8
  - Support a Proc for the configuration of `compatibility_schema_registry_url`
5
9
  and `deployment_schema_registry_url`.
@@ -36,7 +36,10 @@ module Avrolution
36
36
  private
37
37
 
38
38
  def check_schemas(path)
39
- Dir[File.join(path, '**/*.avsc')].each do |schema_file|
39
+ vendor_bundle_path = File.join(path, 'vendor/bundle/')
40
+ Dir[File.join(path, '**/*.avsc')].reject do |file|
41
+ file.start_with?(vendor_bundle_path)
42
+ end.each do |schema_file|
40
43
  check_schema_compatibility(schema_file)
41
44
  end
42
45
  end
@@ -1,3 +1,3 @@
1
1
  module Avrolution
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.4.1.rc0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avrolution
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1.rc0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Salsify, Inc
@@ -273,9 +273,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
273
273
  version: '0'
274
274
  required_rubygems_version: !ruby/object:Gem::Requirement
275
275
  requirements:
276
- - - ">="
276
+ - - ">"
277
277
  - !ruby/object:Gem::Version
278
- version: '0'
278
+ version: 1.3.1
279
279
  requirements: []
280
280
  rubyforge_project:
281
281
  rubygems_version: 2.6.11