Repository URL to install this package:
|
Version:
0.4.1 ▾
|
avro_turf
/
avro_turf.gemspec
|
|---|
# 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.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.7.7"
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.2.0"
spec.add_development_dependency "fakefs"
end