forked from salsify/avromatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
avromatic.gemspec
53 lines (44 loc) · 2.05 KB
/
avromatic.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
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'avromatic/version'
Gem::Specification.new do |spec|
spec.name = 'avromatic'
spec.version = Avromatic::VERSION
spec.authors = ['Salsify Engineering']
spec.email = ['[email protected]']
spec.summary = 'Generate Ruby models from Avro schemas'
spec.description = spec.summary
spec.homepage = 'https://github.com/salsify/avromatic.git'
spec.license = 'MIT'
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['rubygems_mfa_required'] = 'true'
else
raise 'RubyGems 2.0 or newer is required to set allowed_push_host.'
end
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(bin/|lib/|LICENSE.txt)}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.metadata['rubygems_mfa_required'] = 'true'
spec.required_ruby_version = '>= 2.7'
spec.add_runtime_dependency 'activemodel', '>= 5.2', '< 7.1'
spec.add_runtime_dependency 'activesupport', '>= 5.2', '< 7.1'
spec.add_runtime_dependency 'avro', '>= 1.10.0', '< 1.12'
spec.add_runtime_dependency 'avro_schema_registry-client', '>= 0.4.0'
spec.add_runtime_dependency 'avro_turf'
spec.add_runtime_dependency 'ice_nine'
spec.add_development_dependency 'appraisal'
spec.add_development_dependency 'avro-builder', '>= 0.12.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'overcommit', '0.35.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.8'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'salsify_rubocop', '~> 1.27.1'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'webmock'
# For AvroSchemaRegistry::FakeServer
spec.add_development_dependency 'sinatra'
end