require_relative 'lib/covid19/cli/version' Gem::Specification.new do |spec| spec.name = "covid19-cli" spec.version = Covid19::Cli::VERSION spec.authors = ["Alexandre Carlos Martins"] spec.email = ["tecnooxossi@gmail.com"] spec.summary = "COVID-19 Stats" spec.description = "Get COVID19 stats of worldwide" spec.homepage = "https://github.com/TecnoSigma/covid19-cli" spec.license = "MIT" 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"] end