Sha256: 14d4bba71e386b097d7825e445bf2372b718e1fcd91cc85ac6ab467054e6f62c
Contents?: true
Size: 976 Bytes
Versions: 2
Compression:
Stored size: 976 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "openapi3_parser/version" Gem::Specification.new do |spec| spec.name = "openapi3_parser" spec.version = Openapi3Parser::VERSION spec.authors = ["Kevin Dew"] spec.email = ["kevindew@me.com"] spec.summary = "An OpenAPI V3 parser for Ruby" spec.description = "An OpenAPI V3 parser for Ruby" spec.homepage = "https://github.com/kevindew/openapi_parser" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^spec/}) end spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "byebug", "~> 9.1" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.6" spec.add_development_dependency "rubocop", "~> 0.51" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openapi3_parser-0.2.0 | openapi3_parser.gemspec |
openapi3_parser-0.1.0 | openapi3_parser.gemspec |