Sha256: 27d91bb60335b6f7d4bdc18f2ec75c897b43889613f1006003a327dfb7f8b1a3
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "open_api/version" Gem::Specification.new do |spec| spec.name = "zero-rails_openapi" spec.version = OpenApi::VERSION spec.authors = ["zhandao"] spec.email = ["x@skippingcat.com"] spec.summary = %q{Generate the OpenAPI Specification 3 documentation for Rails application.} spec.description = %q{Provide concise DSL for generating the OpenAPI Specification 3 (OAS3) documentation JSON file for Rails application, then you can use Swagger-UI 3.2.0+ to show the documentation.} spec.homepage = "https://github.com/zhandao/zero-rails_openapi" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.16.a" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_runtime_dependency "rails", ">= 3" spec.add_runtime_dependency "activesupport", ">= 3" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
zero-rails_openapi-1.4.0 | zero-rails_openapi.gemspec |
zero-rails_openapi-1.3.3 | zero-rails_openapi.gemspec |