Sha256: d0adf3ec1565c553b42df17a444b28b579f6721e80ee9645ca6fd63a81f06d91
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "tty/link/version" Gem::Specification.new do |spec| spec.name = "tty-link" spec.version = TTY::Link::VERSION spec.authors = ["Piotr Murach"] spec.email = ["me@piotrmurach.com"] spec.summary = %q{Hyperlinks in your terminal} spec.description = %q{Hyperlinks in your terminal} spec.homepage = "https://piotrmurach.github.io/tty" spec.license = "MIT" if spec.respond_to?(:metadata=) spec.metadata = { "allowed_push_host" => "https://rubygems.org", "bug_tracker_uri" => "https://github.com/piotrmurach/tty-link/issues", "changelog_uri" => "https://github.com/piotrmurach/tty-link/blob/master/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/tty-link", "homepage_uri" => spec.homepage, "source_code_uri" => "https://github.com/piotrmurach/tty-link" } end 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 = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.0.0" spec.add_development_dependency "bundler", ">= 1.5.0" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tty-link-0.1.0 | tty-link.gemspec |