Sha256: b84faf3ed3e89256cd24a7d863ceb97f51d4b243242c464ddb9168a32a971215
Contents?: true
Size: 1.12 KB
Versions: 15
Compression:
Stored size: 1.12 KB
Contents
require_relative 'lib/bunch/version' Gem::Specification.new do |spec| spec.name = "bunchcli" spec.version = BunchCLI::VERSION spec.authors = ["Brett Terpstra"] spec.email = ["me@brettterpstra.com"] spec.summary = %q{A CLI for use with Bunch.app (macOS)} spec.homepage = "https://brettterpstra.com/projects/bunch" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.0.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/ttscoff/bunchCLI" spec.metadata["changelog_uri"] = "https://github.com/ttscoff/bunchCLI/blob/master/CHANGELOG.md" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. 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 = "bin" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end
Version data entries
15 entries across 15 versions & 1 rubygems