Sha256: fe0ffc817e9cff3c38f3f0648b32d2e6b7b7f6574dfcead923b049c0d7c5ef9a

Contents?: true

Size: 1.51 KB

Versions: 1

Compression:

Stored size: 1.51 KB

Contents

require_relative "lib/story_branch/git_wrapper/version"

Gem::Specification.new do |spec|
  spec.name = "story_branch-git_wrapper"
  spec.version = StoryBranch::GitWrapper::VERSION
  spec.authors = ["Rui Baltazar"]
  spec.email = ["rui.p.baltazar@gmail.com"]

  spec.summary = "GitWrapper to help running git commands with direct system calls"
  spec.description = <<~DESCRIPTION
    GitWrapper provides a series of commands that wrap actual git commands and processes the output
  DESCRIPTION
  spec.homepage = "https://github.com/story-branch/git_wrapper"
  spec.license = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")

  spec.metadata = {
    "bug_tracker_uri" => "https://github.com/story-branch/git_wrapper/issues",
    "changelog_uri" => "https://github.com/story-branch/git_wrapper/blob/master/Changelog.md",
    "documentation_uri" => "https://github.com/story-branch/git_wrapper/blob/master/README.md",
    "source_code_uri" => "https://github.com/story-branch/git_wrapper",
    "homepage_uri" => spec.homepage
  }

  # 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.bindir = "exe"
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "standard", "~> 1.15"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
story_branch-git_wrapper-0.0.1 story_branch-git_wrapper.gemspec