Sha256: 09048f5f3ac06de1d1da125975df8bbdf71b829d89298bcf2ef607fe4c4d0055
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "rake_roll" spec.version = "0.1.0" spec.authors = ["Stuart Hanscombe"] spec.email = ["hanscs1969@yahoo.co.uk"] spec.summary = "RakeRoll: Git version tagger and changelog creator" spec.description = "RakeRoll: Will version and tag a release and create an updated changelog of the git commits, parsing only commits that are written in a simple markup structure" spec.homepage = "http://www.thelazycamel.com" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.5" spec.add_development_dependency "rake", "~> 0" spec.add_development_dependency "pry", "~> 0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rake_roll-0.1.0 | rake_roll.gemspec |