Sha256: a8b9552f567e644d0b6ee5637d7ae925c619b6a6359996c17c1eb01238ab3df6

Contents?: true

Size: 1.2 KB

Versions: 2

Compression:

Stored size: 1.2 KB

Contents

# coding: utf-8

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

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

  spec.summary       = 'Patches for the official Apache Avro Ruby implementation'
  spec.description   = spec.summary
  spec.homepage      = 'https://github.com/salsify/avro-patches'

  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{^(bin|test|spec|features)/}) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.15'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'test-unit'
  spec.add_development_dependency 'overcommit'

  spec.add_runtime_dependency 'avro', '1.8.2'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
avro-patches-0.4.1 avro-patches.gemspec
avro-patches-0.4.0 avro-patches.gemspec