-
Notifications
You must be signed in to change notification settings - Fork 24
/
ruby-pwsh.gemspec
36 lines (29 loc) · 1.06 KB
/
ruby-pwsh.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pwsh/version'
Gem::Specification.new do |spec|
spec.name = 'ruby-pwsh'
spec.version = Pwsh::VERSION
spec.authors = ['Puppet, Inc.']
spec.email = ['[email protected]']
spec.summary = 'PowerShell code manager for ruby.'
spec.description = 'PowerShell code manager for ruby.'
spec.homepage = 'https://github.com/puppetlabs/ruby-pwsh'
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/puppetlabs/ruby-pwsh'
spec.metadata['changelog_uri'] = 'https://github.com/puppetlabs/ruby-pwsh'
spec.files = Dir[
'README.md',
'LICENSE',
'.rubocop.yml',
'lib/**/*',
'bin/**/*',
'spec/**/*',
]
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.7.0')
end