mirror of
				https://github.com/OpenAPITools/openapi-generator.git
				synced 2025-10-31 16:53:54 +00:00 
			
		
		
		
	* Revert "7.4.0 release" This reverts commit eda049348425171df772a7b9087cc97db718cfda. * prepare 7.5.0 snapshot version * update samples * update doc
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # -*- encoding: utf-8 -*-
 | |
| 
 | |
| =begin
 | |
| #OpenAPI Petstore
 | |
| 
 | |
| #This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
 | |
| 
 | |
| The version of the OpenAPI document: 1.0.0
 | |
| 
 | |
| Generated by: https://openapi-generator.tech
 | |
| Generator version: 7.5.0-SNAPSHOT
 | |
| 
 | |
| =end
 | |
| 
 | |
| $:.push File.expand_path("../lib", __FILE__)
 | |
| require "petstore/version"
 | |
| 
 | |
| Gem::Specification.new do |s|
 | |
|   s.name        = "petstore"
 | |
|   s.version     = Petstore::VERSION
 | |
|   s.platform    = Gem::Platform::RUBY
 | |
|   s.authors     = ["OpenAPI-Generator"]
 | |
|   s.email       = [""]
 | |
|   s.homepage    = "https://openapi-generator.tech"
 | |
|   s.summary     = "OpenAPI Petstore Ruby Gem"
 | |
|   s.description = "This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\"
 | |
|   s.license     = "Unlicense"
 | |
|   s.required_ruby_version = ">= 2.7"
 | |
|   s.metadata    = {}
 | |
| 
 | |
|   s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
 | |
| 
 | |
|   s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
 | |
| 
 | |
|   s.files         = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
 | |
|   s.test_files    = `find spec/*`.split("\n")
 | |
|   s.executables   = []
 | |
|   s.require_paths = ["lib"]
 | |
| end
 |