ConfigMan/configman.gemspec

36 lines
1.3 KiB
Ruby
Raw Normal View History

2023-10-13 18:09:22 -06:00
# frozen_string_literal: true
2023-10-13 21:16:43 -06:00
require_relative 'lib/configman/version'
2023-10-13 18:09:22 -06:00
Gem::Specification.new do |spec|
2023-10-13 21:16:43 -06:00
spec.name = 'configman'
2023-10-13 18:09:22 -06:00
spec.version = ConfigMan::VERSION
spec.authors = ['PixelRidge Softworks']
spec.email = ['vetheon@pixelridgesoftworks.com']
spec.summary = 'A Ruby Gem for automating your configs!'
2023-10-13 21:16:43 -06:00
spec.homepage = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/ConfigMan'
spec.license = 'PixelRidge-BEGPULSE'
spec.required_ruby_version = '>= 3.2.2'
2023-10-13 18:09:22 -06:00
spec.metadata['homepage_uri'] = spec.homepage
2023-10-13 21:16:43 -06:00
spec.metadata['source_code_uri'] = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/ConfigMan'
2023-10-13 18:09:22 -06:00
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) ||
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
end
end
spec.require_paths = ['lib']
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
2023-10-13 21:16:43 -06:00
spec.add_dependency 'inifile'
2023-10-13 18:09:22 -06:00
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end