-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathr2-oas.gemspec
46 lines (40 loc) · 2.09 KB
/
r2-oas.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'r2-oas/version'
Gem::Specification.new do |spec|
spec.name = 'r2-oas'
spec.version = R2OAS::VERSION
spec.authors = ['yukihirop']
spec.email = ['[email protected]']
spec.summary = 'Provide rake tasks to management API Docment (OpenAPI)'
spec.description = %Q{== Let's intuitively write API documentation with Swagger Editor in your Rails Project! 😊\n#{IO.read('GEMSPEC.md')}}
spec.homepage = 'https://github.com/yukihirop/r2-oas'
spec.license = 'MIT'
spec.metadata = {
"bug_tracker_uri" => "https://github.com/yukihirop/r2-oas/issues",
"changelog_uri" => "https://github.com/yukihirop/r2-oas/blob/v#{spec.version}/CHANGELOG.md",
"documentation_uri" => "https://yukihirop.github.io/r2-oas",
"source_code_uri" => "https://github.com/yukihirop/r2-oas/tree/v#{spec.version}"
}
# Specify which files should be added to the gem when it is released.
spec.files = Dir["CHANGELOG.md", "GEMSPEC.md", "README.md", "README.ja.md", "LICENSE.txt", "lib/**/*", "r2-oas.gemspec"]
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
spec.add_runtime_dependency 'docker-api', '>= 1.34.2'
spec.add_runtime_dependency 'easy_diff', '>= 1.0.0'
spec.add_runtime_dependency 'eventmachine', '>= 1.2.0'
spec.add_runtime_dependency 'key_flatten', '>= 1.0.0'
spec.add_runtime_dependency 'railties', '>= 4.2.5'
spec.add_runtime_dependency 'watir', '>= 6.16.5'
spec.add_development_dependency 'bundler', '>= 1.17'
spec.add_development_dependency 'coveralls'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'appraisal'
spec.add_development_dependency 'activerecord', '>= 4.2.5'
end