1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "cli/app/version"
Gem::Specification.new do |spec|
spec.name = "cli-app"
spec.version = Cli::App::VERSION
spec.authors = ["Aruba Developers"]
spec.email = "cukes@googlegroups.com"
spec.summary = "Summary"
spec.description = "Description"
spec.homepage = "http://example.com"
spec.required_ruby_version = ">= 2.5"
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
# delete this section to allow pushing this gem to any host.
spec.files = Dir["lib/**/*", "README.md"]
spec.bindir = "exe"
spec.executables = ["bin/aruba-test-cli"]
spec.require_paths = ["lib"]
spec.add_development_dependency "aruba"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
end
|