Sha256: 2555aa0fa06b149401055740753997172240a989aa594dcfed9505e9fa1682a7
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
require_relative 'lib/git_selector/version' Gem::Specification.new do |spec| spec.name = "git_selector" spec.version = GitSelector::VERSION spec.authors = ["Tatsuya Suzuki"] spec.email = ["ttsysuzuki@googlemail.com"] spec.summary = 'Interactive git tag and branch selector' spec.description = 'A CLI to let you interactive select tag and branch' spec.homepage = 'https://github.com/suzukimilanpaak/git_selector' spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = 'https://github.com/suzukimilanpaak/git_selector' spec.metadata["changelog_uri"] = 'https://github.com/suzukimilanpaak/blob/master/CHANGELOG.md' # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "bin" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'git' spec.add_dependency 'tty-prompt-vim' spec.add_development_dependency 'rspec' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
git_selector-0.1.1 | git_selector.gemspec |
git_selector-0.1.0 | git_selector.gemspec |