Sha256: 55dd5fb4f61d5dd5f4676f1e261b22cd892bc8e34eb63fb80993d9f6679cf3a7
Contents?: true
Size: 1.23 KB
Versions: 1
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 "pry", "0.14.1" gem.add_development_dependency "rspec", "3.10.0" gem.add_development_dependency "rubocop", "1.25.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
commit_format-0.1.0 | commit_format.gemspec |