Sha256: 056b73a48d6b59e12ff6f978ad5749c8d00c8b1a49a0e0466f1b01749cb4c61e
Contents?: true
Size: 914 Bytes
Versions: 1
Compression:
Stored size: 914 Bytes
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "thor/zsh_completion/version" Gem::Specification.new do |spec| spec.name = "thor-zsh_completion" spec.version = Thor::ZshCompletion::VERSION spec.authors = ["labocho"] spec.email = ["labocho@penguinlab.jp"] spec.summary = "Create zsh completion script for Thor subclass" spec.description = "Create zsh completion script for Thor subclass" spec.homepage = "https://github.com/labocho/thor-zsh_completion" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject {|f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r(^exe/)) {|f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.6" spec.add_dependency "thor", "< 2" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thor-zsh_completion-0.1.10 | thor-zsh_completion.gemspec |