Sha256: 001f557af10153296d060c31f5f6b1e77afd8a8e31193b19700ff78d7662add6

Contents?: true

Size: 1.35 KB

Versions: 7

Compression:

Stored size: 1.35 KB

Contents

Gem::Specification.new do |spec|
  spec.name = "gfsm"
  spec.version = File.read(".version")
  spec.authors = ["Zille Marco"]

  spec.summary = %q{This gem adds support to bump the semantic version bump and generate changelog file based on the commits trailer.}
  spec.description = %q{This gem adds support to bump the semantic version bump and generate changelog file based on the commits trailer.}
  spec.homepage = "https://gitlab.com/zillemarco/gitlab-flavored-semantic-versioning"
  spec.license = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")

  spec.metadata["allowed_push_host"] = "https://rubygems.org"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://gitlab.com/zillemarco/gitlab-flavored-semantic-versioning"
  spec.metadata["changelog_uri"] = "https://gitlab.com/zillemarco/gitlab-flavored-semantic-versioning/-/releases"

  # 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("..", __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.executables = ["gfsm"]
  spec.require_paths = ["lib"]

  spec.add_dependency "yaml"
  spec.add_dependency "sem_version"
  spec.add_dependency "git"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gfsm-0.3.2 gfsm.gemspec
gfsm-0.3.1 gfsm.gemspec
gfsm-0.3.0 gfsm.gemspec
gfsm-0.2.0 gfsm.gemspec
gfsm-0.1.4 gfsm.gemspec
gfsm-0.1.3 gfsm.gemspec
gfsm-0.1.2 gfsm.gemspec