Sha256: b70373e44d8439828f06ffdaf7b159b7d85a6aa52767a637d83edde7721511c7

Contents?: true

Size: 1.23 KB

Versions: 2

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

require File.expand_path("lib/commit_format/version", __dir__)

Gem::Specification.new do |gem|
  gem.authors = ["Tom de Bruijn"]
  gem.email = ["tom@tomdebruijn.com"]
  gem.summary = "Git commit formatter utility."
  gem.description = "Commit-format is a utility to make it easier generating " \
    "Pull Request descriptions from multiple commits."
  gem.homepage = "https://github.com/tombruijn/commit-format"
  gem.license = "Hippocratic-2.1"

  gem.files = `git ls-files`
    .split($\) # rubocop:disable Style/SpecialGlobalVars
    .reject { |f| f.start_with?(".changesets/") }
  gem.executables << "commit-format"
  gem.name = "commit_format"
  gem.require_paths = %w[lib]
  gem.version = CommitFormat::VERSION
  gem.required_ruby_version = ">= 2.7.0"

  gem.metadata = {
    "rubygems_mfa_required" => "true",
    "bug_tracker_uri" => "https://github.com/tombruijn/commit-format/issues",
    "changelog_uri" =>
      "https://github.com/tombruijn/commit-format/blob/main/CHANGELOG.md",
    "source_code_uri" => "https://github.com/tombruijn/commit-format"
  }

  gem.add_development_dependency "debug", "1.6.2"
  gem.add_development_dependency "rspec", "3.10.0"
  gem.add_development_dependency "rubocop", "1.25.0"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
commit_format-0.2.1 commit_format.gemspec
commit_format-0.2.0 commit_format.gemspec