Skip to content

Commit 1c9315d

Browse files
committed
released -v0.11.5
1 parent 310d70d commit 1c9315d

1 file changed

Lines changed: 17 additions & 18 deletions

File tree

open_api_import.gemspec

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
11
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"
55
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)/})
1818
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"
2121
s.post_install_message = "Thanks for installing! Visit us on https://github.com/MarioRuiz/open_api_import"
2222
end
23-

0 commit comments

Comments
 (0)