Sha256: d4dd86014af2e2fc1faee1ee43e5aa6920ebf5e63f9e8164147d9d6edf2b2b71

Contents?: true

Size: 1.65 KB

Versions: 7

Compression:

Stored size: 1.65 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 ticket/ticket number.'
  spec.description  = 'Generates a branch name based on a JIRA ticket/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 'os', '~> 1.1', '>= 1.1.4'
  spec.add_dependency 'thor', '~> 1.2', '>= 1.2.1'

  # Remove this for now.
  spec.metadata['rubygems_mfa_required'] = 'true'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
branch-name-3.4.0 branch-name.gemspec
branch-name-3.3.0 branch-name.gemspec
branch-name-3.2.2 branch-name.gemspec
branch-name-3.2.1 branch-name.gemspec
branch-name-3.0.0 branch-name.gemspec
branch-name-2.2.0 branch-name.gemspec
branch-name-2.1.0 branch-name.gemspec