avro-resolution_canonical_form 0.1.0.rc0 → 0.1.0

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
  SHA1:
3
- metadata.gz: 8b215d8dafd28cb843b8a64936d6293631ca83ea
4
- data.tar.gz: 260398add04f7503f3fdb68b04b7b009db08bb92
3
+ metadata.gz: dd4c9bcb8a8a9547bdf86e07f176653c6f652eef
4
+ data.tar.gz: e9cdf593af4a7d544730b7f0861af33380a19418
5
5
  SHA512:
6
- metadata.gz: db330d565c3e1251ff07e976b9cd8f6199fb0ac9e54548513004edd83194d584dfeda71950583100106d27bf957f36f5712f67532676bb064ad92e9485ae19d7
7
- data.tar.gz: aca2c3fcb923337b095adedf83ad181dae64463ea625d2e8cc18e7c01b1f62e392e70d92ce057b500d13f1cbc4a911261d76244dbdcfb94dbdc472209b4605da
6
+ metadata.gz: 82d0029b499e6094121baaefc687ed60d5dcdeb94aec258b625d38edbaa6ca44b86c9c8e194fb3af30b1f5af1b4105020118fc8d0978eef0e8dd505ac4a1cc18
7
+ data.tar.gz: def105ef3ab398094c5110a2505dd3f61f89296e74f00fbc6f500f85257cd327c362f337b946dcceeaea8c34310afc2e3a900f8eafe3918b823d9ea5cc1afb3e
@@ -8,4 +8,3 @@ Style/FileName:
8
8
  RSpec/FilePath:
9
9
  Enabled: false
10
10
 
11
-
data/Gemfile CHANGED
@@ -1,7 +1,5 @@
1
-
2
1
  source 'https://rubygems.org'
3
2
 
4
-
5
3
  # override the :github shortcut to be secure by using HTTPS
6
4
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
7
5
 
data/Rakefile CHANGED
@@ -1,6 +1,5 @@
1
1
  require 'bundler/gem_tasks'
2
2
 
3
-
4
3
  require 'rspec/core/rake_task'
5
4
 
6
5
  RSpec::Core::RakeTask.new(:spec)
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'avro/resolution_canonical_form/version'
4
+ require 'avro-resolution_canonical_form/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'avro-resolution_canonical_form'
8
- spec.version = Avro::ResolutionCanonicalForm::VERSION
8
+ spec.version = AvroResolutionCanonicalForm::VERSION
9
9
  spec.authors = ['Salsify, Inc']
10
10
  spec.email = ['engineering@salsify.com']
11
11
 
@@ -18,7 +18,6 @@ Gem::Specification.new do |spec|
18
18
  # Set 'allowed_push_post' to control where this gem can be published.
19
19
  if spec.respond_to?(:metadata)
20
20
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
21
-
22
21
  else
23
22
  raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
24
23
  end
@@ -1,3 +1,3 @@
1
- require 'avro/resolution_canonical_form/version'
1
+ require 'avro-resolution_canonical_form/version'
2
2
  require 'avro/resolution_canonical_form'
3
3
  require 'avro/resolution_fingerprint'
@@ -0,0 +1,3 @@
1
+ module AvroResolutionCanonicalForm
2
+ VERSION = '0.1.0'.freeze
3
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avro-resolution_canonical_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.rc0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Salsify, Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-10 00:00:00.000000000 Z
11
+ date: 2017-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -131,8 +131,8 @@ files:
131
131
  - bin/console
132
132
  - bin/setup
133
133
  - lib/avro-resolution_canonical_form.rb
134
+ - lib/avro-resolution_canonical_form/version.rb
134
135
  - lib/avro/resolution_canonical_form.rb
135
- - lib/avro/resolution_canonical_form/version.rb
136
136
  - lib/avro/resolution_fingerprint.rb
137
137
  homepage: https://github.com/salsify/avro-resolution_canonical_form
138
138
  licenses:
@@ -150,9 +150,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
150
150
  version: '0'
151
151
  required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  requirements:
153
- - - ">"
153
+ - - ">="
154
154
  - !ruby/object:Gem::Version
155
- version: 1.3.1
155
+ version: '0'
156
156
  requirements: []
157
157
  rubyforge_project:
158
158
  rubygems_version: 2.6.10
@@ -1,7 +0,0 @@
1
- require 'avro'
2
-
3
- module Avro
4
- class ResolutionCanonicalForm < SchemaNormalization
5
- VERSION = '0.1.0.rc0'.freeze
6
- end
7
- end