-
Notifications
You must be signed in to change notification settings - Fork 84
/
avro_turf.gemspec
44 lines (36 loc) · 1.65 KB
/
avro_turf.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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 = ["[email protected]"]
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.11.3", "< 1.13"
spec.add_dependency "excon", "~> 0.104"
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.add_development_dependency "resolv"
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