Sha256: c9d5a6c8273e457c661ee9c13f5b6ba47d311bd3e98fb45c5a817178da1324e8
Contents?: true
Size: 1.81 KB
Versions: 3
Compression:
Stored size: 1.81 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'avrolution/version' Gem::Specification.new do |spec| spec.name = 'avrolution' spec.version = Avrolution::VERSION spec.authors = ['Salsify, Inc'] spec.email = ['engineering@salsify.com'] spec.summary = 'Support for the evolution of Avro schemas stored in a schema registry.' spec.description = spec.summary spec.homepage = 'https://github.com/salsify/avrolution' 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 'bundler', '~> 1.12' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.5' spec.add_development_dependency 'rspec-its' spec.add_development_dependency 'salsify_rubocop', '~> 0.47.2' spec.add_development_dependency 'overcommit' spec.add_development_dependency 'fakefs' spec.add_development_dependency 'simplecov' spec.add_runtime_dependency 'avro-resolution_canonical_form', '>= 0.2.0' spec.add_runtime_dependency 'avro_schema_registry-client', '>= 0.2.0' spec.add_runtime_dependency 'diffy' spec.add_runtime_dependency 'private_attr' spec.add_runtime_dependency 'activesupport' spec.add_runtime_dependency 'activemodel' spec.add_runtime_dependency 'procto' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
avrolution-0.6.1 | avrolution.gemspec |
avrolution-0.6.0 | avrolution.gemspec |
avrolution-0.5.0 | avrolution.gemspec |