Sha256: cdbbb96b066f94f1c69ef2531358e723e8c720421ea3eef3fb333004845d2196
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# -*- encoding: utf-8 -*- require File.dirname(__FILE__) + "/lib/murano-cli-whirly/version" Gem::Specification.new do |gem| gem.name = "murano-cli-whirly" gem.version = Whirly::VERSION gem.summary = "Whirly: The friendly terminal spinner" gem.description = "Simple terminal spinner with support for custom spinners. Includes spinners from npm's cli-spinners." # (lb); Original thanks to: # gem.authors = ["Jan Lelis"] # gem.email = ["mail@janlelis.de"] # gem.homepage = "https://github.com/janlelis/whirly" gem.authors = ['Exosite LLC'] gem.email = ['murano-cli-whirly@exosite.com'] gem.homepage = 'https://github.com/exosite/murano-cli-whirly' gem.license = 'MIT' gem.files = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^(pkg|data)/ } + %w[ data/cli-spinners.json data/whirly-static-spinners.json ] gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency "unicode-display_width", "~> 1.1" gem.required_ruby_version = "~> 2.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
murano-cli-whirly-0.2.7 | murano-cli-whirly.gemspec |