Sha256: 3c058deaf31cdc77106ea83a0ffd01c7aa573de021607305140e0161c069a1c6
Contents?: true
Size: 1.15 KB
Versions: 7
Compression:
Stored size: 1.15 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'git/switcher/version' Gem::Specification.new do |spec| spec.name = Git::Switcher::NAME spec.version = Git::Switcher::VERSION spec.authors = ['Peter Vandenberk'] spec.email = ['pvandenberk@mac.com'] spec.summary = 'The ultimate CLI git branch and tag switcher' spec.description = 'Easily switch between git tags and branches' spec.homepage = 'https://github.com/pvdb/git-switcher' 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.add_dependency 'rainbow', '~> 3.0' spec.add_dependency 'rugged', '~> 0.27' spec.add_development_dependency 'bundler' spec.add_development_dependency 'minitest' spec.add_development_dependency 'pry' spec.add_development_dependency 'rake' spec.add_development_dependency 'rubocop' end
Version data entries
7 entries across 7 versions & 1 rubygems