-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpuppet-commit.gemspec
37 lines (31 loc) · 1.15 KB
/
puppet-commit.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'puppet-commit/version'
Gem::Specification.new do |spec|
spec.name = 'puppet-commit'
spec.version = PuppetCommit::VERSION
spec.authors = ['Puppet, Inc.']
spec.summary = 'A Ruby gem for automating Puppet module commits.'
spec.description = <<-DESC
puppet-commit is a Ruby gem that automates commits for Puppet modules.
It streamlines the process of committing changes to version control systems using AI.
DESC
spec.homepage = 'https://github.com/puppetlabs/puppet-commit'
spec.license = 'Apache-2.0'
# Specify the main entry point file
spec.files = Dir[
'README.md',
'LICENSE',
'lib/**/*',
'spec/**/*',
]
spec.require_paths = ['lib']
# Specify any executables
spec.executables = ['puppet-commit']
# Specify the test files
spec.test_files = Dir['spec/**/*_spec.rb']
spec.add_runtime_dependency 'open3', '~> 0.1'
spec.add_runtime_dependency 'ruby_figlet', '~> 0.6.1'
spec.add_runtime_dependency 'ruby-openai', '~> 4.0'
end