|
1 | 1 | Gem::Specification.new do |s| |
2 | | - s.name = 'open_api_import' |
3 | | - s.version = '0.11.4' |
4 | | - s.summary = "OpenApiImport -- Import a Swagger or Open API file and create a Ruby Request Hash file including all requests and responses with all the examples. The file can be in JSON or YAML" |
| 2 | + s.name = "open_api_import" |
| 3 | + s.version = "0.11.5" |
| 4 | + s.summary = "OpenApiImport -- Import a Swagger or Open API file and create a Ruby Request Hash file including all requests and responses with all the examples. The file can be in JSON or YAML" |
5 | 5 | s.description = "OpenApiImport -- Import a Swagger or Open API file and create a Ruby Request Hash file including all requests and responses with all the examples. The file can be in JSON or YAML" |
6 | | - s.authors = ["Mario Ruiz"] |
7 | | - s.email = 'marioruizs@gmail.com' |
8 | | - s.files = ["lib/open_api_import.rb","LICENSE","README.md",".yardopts"] + Dir['lib/open_api_import/*.rb'] |
9 | | - s.extra_rdoc_files = ["LICENSE","README.md"] |
10 | | - s.homepage = 'https://github.com/MarioRuiz/open_api_import' |
11 | | - s.license = 'MIT' |
12 | | - s.add_runtime_dependency 'oas_parser_reborn', '~> 0.25' |
13 | | - s.add_runtime_dependency 'rufo', '~> 0.16.1' |
14 | | - s.add_runtime_dependency 'nice_hash', '~> 1.18' |
15 | | - s.add_runtime_dependency 'activesupport', '~> 6.1' #due this bug on activesupport https://github.com/Nexmo/oas_parser/issues/65 |
16 | | - s.add_development_dependency 'rspec', '~> 3.8', '>= 3.8.0' |
17 | | - s.test_files = s.files.grep(%r{^(test|spec|features)/}) |
| 6 | + s.authors = ["Mario Ruiz"] |
| 7 | + s.email = "marioruizs@gmail.com" |
| 8 | + s.files = ["lib/open_api_import.rb", "LICENSE", "README.md", ".yardopts"] + Dir["lib/open_api_import/*.rb"] |
| 9 | + s.extra_rdoc_files = ["LICENSE", "README.md"] |
| 10 | + s.homepage = "https://github.com/MarioRuiz/open_api_import" |
| 11 | + s.license = "MIT" |
| 12 | + s.add_runtime_dependency "oas_parser_reborn", "~> 0.25" |
| 13 | + s.add_runtime_dependency "rufo", "~> 0.16.1" |
| 14 | + s.add_runtime_dependency "nice_hash", "~> 1.18" |
| 15 | + s.add_runtime_dependency "activesupport", "~> 6.1" #due this bug on activesupport https://github.com/Nexmo/oas_parser/issues/65 |
| 16 | + s.add_development_dependency "rspec", "~> 3.8", ">= 3.8.0" |
| 17 | + s.test_files = s.files.grep(%r{^(test|spec|features)/}) |
18 | 18 | s.require_paths = ["lib"] |
19 | | - s.executables << 'open_api_import' |
20 | | - s.required_ruby_version = '>= 2.7' |
| 19 | + s.executables << "open_api_import" |
| 20 | + s.required_ruby_version = ">= 2.7" |
21 | 21 | s.post_install_message = "Thanks for installing! Visit us on https://github.com/MarioRuiz/open_api_import" |
22 | 22 | end |
23 | | - |
0 commit comments