Sha256: 560208a452e8134912b40d5940ff0e53672283e10d524e9fad1468b92b00caa1

Contents?: true

Size: 842 Bytes

Versions: 7

Compression:

Stored size: 842 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'git_commands/version'

Gem::Specification.new do |s|
  s.name = "git_commands"
  s.version = GitCommands::VERSION
  s.authors = ["costajob"]
  s.email = ["costajob@gmail.com"]
  s.summary = "Utility library to rebase and aggregate your project branches"
  s.homepage = "https://github.com/costajob/git_commands.git"
  s.license = "MIT"
  s.required_ruby_version = ">= 2.1.8"

  s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec|s|features)/}) }
  s.bindir = "bin"
  s.executables = %w[rebase aggregate remove]
  s.require_paths = ["lib"]

  s.add_development_dependency "bundler", "~> 1.11"
  s.add_development_dependency "rake", "~> 10.0"
  s.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
git_commands-3.5.3 git_commands.gemspec
git_commands-3.5.2 git_commands.gemspec
git_commands-3.5.1 git_commands.gemspec
git_commands-3.4.0 git_commands.gemspec
git_commands-3.3.7 git_commands.gemspec
git_commands-3.3.6 git_commands.gemspec
git_commands-3.3.5 git_commands.gemspec