Sha256: af73ae4cb280a4b5b05a68d5029e77bb78390dab453ce4b720500cb38a4f1c21

Contents?: true

Size: 747 Bytes

Versions: 6

Compression:

Stored size: 747 Bytes

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'incr/version'

Gem::Specification.new do |spec|
  spec.name = 'incr'
  spec.version = Incr::VERSION
  spec.authors = ['Jean-Philippe Couture']
  spec.email = ['jcouture@gmail.com']

  spec.summary = 'Tasteful utility to increment the version number and create a corresponding git tag.'
  spec.homepage = 'https://github.com/jcouture/incr'
  spec.license = 'MIT'

  spec.files = `git ls-files`.split("\n")
  spec.bindir = 'bin'
  spec.executables << 'incr'
  spec.require_paths << 'lib'

  spec.add_runtime_dependency('gli', '2.17.1')
  spec.add_runtime_dependency('sem_version', '2.0.1')
  spec.add_runtime_dependency('git', '1.3.0')
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
incr-0.7.1 incr.gemspec
incr-0.7.0 incr.gemspec
incr-0.6.0 incr.gemspec
incr-0.5.0 incr.gemspec
incr-0.4.0 incr.gemspec
incr-0.3.0 incr.gemspec