Sha256: c9f51918dfcce965ad9c46ee886cf8ca2dfe107caaacab28c2e70b38a4f280e5
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'git/multi/version' require 'git/multi/gemspec' Gem::Specification.new do |spec| spec.name = Git::Multi::NAME spec.version = Git::Multi::VERSION spec.authors = ['Peter Vandenberk'] spec.email = ['pvandenberk@mac.com'] spec.summary = 'The ultimate multi-repo utility for git!' spec.description = 'Run the same git command in a set of related repos' spec.homepage = 'https://github.com/pvdb/git-multi' spec.license = 'MIT' spec.files = Dir.chdir(File.expand_path(__dir__)) 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.post_install_message = Git::Multi::PIM spec.add_dependency 'octokit', '~> 4.13' spec.add_development_dependency 'bundler' spec.add_development_dependency 'pry' spec.add_development_dependency 'rake' spec.add_development_dependency 'rubocop' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
git-multi-2.5.0 | git-multi.gemspec |
git-multi-2.4.0 | git-multi.gemspec |