Sha256: 681cdfd17204eab6bfd80222eefcd0f70df06f79bbd80c9ea93e910804764e63
Contents?: true
Size: 777 Bytes
Versions: 29
Compression:
Stored size: 777 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'git-utils/version' Gem::Specification.new do |gem| gem.name = "git-utils" gem.version = Git::Utils::VERSION gem.authors = ["Michael Hartl"] gem.email = ["michael@michaelhartl.com"] gem.description = %q{Add some Git utilities} gem.summary = %q{See the README for full documentation} gem.homepage = "https://github.com/mhartl/git-utils" gem.license = "MIT" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] end
Version data entries
29 entries across 29 versions & 1 rubygems