Sha256: f36afc9adf54b54fcd39a3a6c4c03e2bd1ab1b9f5238d49dff18815d396ec354

Contents?: true

Size: 1.99 KB

Versions: 1

Compression:

Stored size: 1.99 KB

Contents

# coding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'avro-resolution_canonical_form/version'

Gem::Specification.new do |spec|
  spec.name          = 'avro-resolution_canonical_form'
  spec.version       = AvroResolutionCanonicalForm::VERSION
  spec.authors       = ['Salsify, Inc']
  spec.email         = ['engineering@salsify.com']

  spec.summary       = 'Unique identification of Avro schemas for schema resolution'
  spec.description   = spec.summary
  spec.homepage      = 'https://github.com/salsify/avro-resolution_canonical_form'

  spec.license       = 'MIT'

  # Set 'allowed_push_post' to control where this gem can be published.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = 'https://rubygems.org'
  else
    raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
  end

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = 'bin'
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'appraisal'
  spec.add_development_dependency 'bundler', '~> 2.0'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.4'
  spec.add_development_dependency 'salsify_rubocop', '~> 0.46.0'
  spec.add_development_dependency 'overcommit'
  spec.add_development_dependency 'simplecov'

  spec.add_runtime_dependency 'avro', '~> 1.10.0'
  spec.add_runtime_dependency 'avro-patches', '< 2.0.0'

  spec.post_install_message = %(
avro-resolution_canonical_form now requires Avro v1.10.

New features in Avro Ruby v1.10 are now included in the canonical form:
  - aliases
  - enum defaults
  - decimal logical types

Schemas that use any of these features will get a different fingerprint with
this version. For projects that only use Ruby, use of these features is unlikely
as they were previously unsupported.
)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
avro-resolution_canonical_form-0.3.0 avro-resolution_canonical_form.gemspec