forked from puppetlabs/puppet-strings
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenvox-strings.gemspec
More file actions
30 lines (25 loc) · 969 Bytes
/
Copy pathopenvox-strings.gemspec
File metadata and controls
30 lines (25 loc) · 969 Bytes
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'openvox-strings/version'
Gem::Specification.new do |s|
s.name = 'openvox-strings'
s.author = ['Puppet Inc.', 'Vox Pupuli']
s.version = OpenvoxStrings::VERSION
s.license = 'Apache-2.0'
s.summary = 'Puppet documentation via YARD'
s.email = 'voxpupuli@groups.io'
s.homepage = 'https://github.com/voxpupuli/openvox-strings'
s.required_ruby_version = '>= 3.2.0'
s.extra_rdoc_files = [
'CHANGELOG.md',
'LICENSE',
'README.md',
]
s.files = Dir['CHANGELOG.md', 'README.md', 'LICENSE', 'lib/**/*', 'exe/**/*']
s.add_dependency 'irb', '< 2' # remove after https://github.com/lsegal/yard/pull/1643
s.add_dependency 'rgen', '>= 0.9', '< 0.11'
s.add_dependency 'yard', '~> 0.9'
s.add_development_dependency 'openvox', '>= 8.24', '< 9'
s.add_development_dependency 'voxpupuli-rubocop', '~> 5.2.0'
end