Sha256: 93e74c881a76e25015e378ffb0e840ef7864ece0fe52fb4b86290f0bb9012cae
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
# frozen_string_literal: true require_relative 'lib/branch/name/version' Gem::Specification.new do |spec| spec.name = 'branch-name' spec.version = Branch::Name::VERSION spec.authors = ['Gene M. Angelo, Jr.'] spec.email = ['public.gma@gmail.com'] spec.summary = 'Generates a branch name based on a JIRA card/ticket number.' spec.description = 'Generates a branch name based on a JIRA card/ticket number.' spec.homepage = 'https://github.com/gangelo/branch_name' spec.license = 'MIT' spec.required_ruby_version = '>= 3.0.1' # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'" spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/gangelo/branch-name' spec.metadata['changelog_uri'] = 'https://github.com/gangelo/branch-name/CHANGELOG.md' # 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(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'activesupport', '~> 7.0', '>= 7.0.4' spec.add_dependency 'colorize', '~> 0.8.1' spec.add_dependency 'thor', '~> 1.2', '>= 1.2.1' # Remove this for now. spec.metadata['rubygems_mfa_required'] = 'true' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
branch-name-1.0.0.pre.beta | branch-name.gemspec |