Todo_Marker/todo_marker.gemspec
2024-06-22 10:57:05 -06:00

28 lines
1.0 KiB
Ruby

# frozen_string_literal: true
require_relative 'lib/todo_marker/version'
Gem::Specification.new do |spec|
spec.name = 'todo_marker'
spec.version = TodoMarker::VERSION
spec.authors = ['VetheonGames']
spec.email = ['connor@pixelridgesoftworks.com']
spec.summary = 'Standalone gem for generating TODO.md files'
spec.description = "This standalone gem takes in source code files written in Ruby, and generates a TODO.md file from
them.
mark things to add to the TODO.md with the # !!TODO!! magic comment"
spec.homepage = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/Todo_Marker'
spec.license = 'GNU V3.0'
spec.required_ruby_version = '>= 3.2'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/Todo_Marker'
spec.files = Dir['lib/**/*.rb', 'bin/*']
spec.bindir = 'bin'
spec.executables = ['todo_marker']
spec.require_paths = ['lib']
spec.metadata['rubygems_mfa_required'] = 'true'
end