Sha256: c13edff2de2e68631261aba7542c4bf79f9f0f3360cbd40591a24e0bd55d9088
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'tomograph/version' Gem::Specification.new do |spec| spec.name = 'tomograph' spec.version = Tomograph::VERSION spec.authors = ['d.efimov'] spec.email = ['d.efimov@fun-box.ru'] spec.summary = 'Convert API Blueprint, Swagger and OpenAPI to Tomogram' spec.description = 'Convert API Blueprint, Swagger and OpenAPI to routes and JSON-Schemas' spec.homepage = 'https://github.com/funbox/tomograph' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'methadone', '~> 2', '>= 2.0.2' spec.add_development_dependency 'byebug', '~> 11.1', '>= 11.1.1' spec.add_development_dependency 'rake', '>= 13.0.1' spec.add_development_dependency 'rspec', '~> 3.10', '>= 3.10.0' spec.add_development_dependency 'rubocop', '~> 0.81', '>= 0.81.0' spec.add_development_dependency 'simplecov', '~> 0.21', '>= 0.21.2' spec.add_development_dependency 'json-schema', '~> 2.8', '>= 2.8.1' spec.required_ruby_version = '>= 2.4.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tomograph-3.1.2 | tomograph.gemspec |