-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_tests.gemspec
22 lines (21 loc) · 1.33 KB
/
create_tests.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = 'create_tests'
s.version = '0.6.5'
s.summary = "CreateTests -- Create Tests automatically from a Requests file. Perfect to be used with the result from importing a Swagger file using the open_api_import gem"
s.description = "CreateTests -- Create Tests automatically from a Requests file. Perfect to be used with the result from importing a Swagger file using the open_api_import gem"
s.authors = ["Mario Ruiz"]
s.email = '[email protected]'
s.files = ["lib/create_tests.rb", "lib/create-tests/create_helper.rb", "lib/create-tests/create_settings.rb",
"lib/create-tests/create_test.rb", "lib/create-tests/from.rb", "lib/create-tests/get_modules.rb", "LICENSE","README.md",".yardopts"]
s.extra_rdoc_files = ["LICENSE","README.md"]
s.homepage = 'https://github.com/MarioRuiz/create_tests'
s.license = 'MIT'
s.add_runtime_dependency 'rufo', '~> 0.16'
s.add_runtime_dependency 'nice_hash', '~> 1.18'
s.add_development_dependency 'rspec', '~> 3.8', '>= 3.8.0'
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.executables << 'create_tests'
s.required_ruby_version = '>= 2.7'
s.post_install_message = "Thanks for installing! Visit us on https://github.com/MarioRuiz/create_tests"
end