-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrspec-puppet.gemspec
More file actions
28 lines (21 loc) · 881 Bytes
/
rspec-puppet.gemspec
File metadata and controls
28 lines (21 loc) · 881 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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rspec-puppet/version'
Gem::Specification.new do |s|
s.name = 'rspec-puppet'
s.version = RSpecPuppet::VERSION
s.homepage = 'https://github.com/puppetlabs/rspec-puppet/'
s.summary = 'RSpec tests for your Puppet manifests'
s.description = <<-DESC
RSpec tests for your Puppet manifests.
DESC
s.license = 'MIT'
s.executables = ['rspec-puppet-init']
s.files = Dir['CHANGELOG.md', 'LICENSE', 'README.md', 'lib/**/*', 'bin/**/*']
s.add_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'voxpupuli-rubocop', '~> 3.0.0'
s.authors = ['Tim Sharpe', 'Puppet, Inc.', 'Community Contributors']
s.email = ['tim@sharpe.id.au', 'modules-team@puppet.com']
s.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
end