Sha256: 1a1b0a1e385b1a3f3d0ab0aae681aac098abd5fcadfb2564ed86605535c66036
Contents?: true
Size: 1.61 KB
Versions: 2
Compression:
Stored size: 1.61 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'avro_turf/version' Gem::Specification.new do |spec| spec.name = "avro_turf" spec.version = AvroTurf::VERSION spec.authors = ["Daniel Schierbeck"] spec.email = ["dasch@zendesk.com"] spec.summary = "A library that makes it easier to use the Avro serialization format from Ruby" spec.homepage = "https://github.com/dasch/avro_turf" spec.license = "MIT" spec.metadata["rubygems_mfa_required"] = "true" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "avro", ">= 1.8.0", "< 1.12" spec.add_dependency "excon", "~> 0.71" spec.add_development_dependency "bundler", "~> 2.0" spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rspec", "~> 3.2" spec.add_development_dependency "fakefs", "< 3" spec.add_development_dependency "webmock" spec.add_development_dependency "sinatra" spec.add_development_dependency "json_spec" spec.add_development_dependency "rack-test" spec.post_install_message = %{ avro_turf v0.8.0 deprecates the names AvroTurf::SchemaRegistry, AvroTurf::CachedSchemaRegistry, and FakeSchemaRegistryServer. Use AvroTurf::ConfluentSchemaRegistry, AvroTurf::CachedConfluentSchemaRegistry, and FakeConfluentSchemaRegistryServer instead. See https://github.com/dasch/avro_turf#deprecation-notice } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
avro_turf-1.12.0 | avro_turf.gemspec |
avro_turf-1.11.0 | avro_turf.gemspec |