Sha256: 9eb8edaabba8c2bd72ffe8213339c7046b065cbd4f00531796d4bf1f2819f50c
Contents?: true
Size: 875 Bytes
Versions: 2
Compression:
Stored size: 875 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.add_dependency "thor", "~> 0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
thor-zsh_completion-0.1.7 | thor-zsh_completion.gemspec |
thor-zsh_completion-0.1.6 | thor-zsh_completion.gemspec |