Sha256: 291ed17abeb832298090e08a82ca0835c119d606ec17b4ba20d3265931a23a90
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true require_relative "lib/aly/version" Gem::Specification.new do |spec| spec.name = "aly" spec.version = Aly::VERSION spec.authors = ["Liu Xiang"] spec.email = ["liuxiang921@gmail.com"] spec.summary = "A simple wrapper for aliyun cli" spec.description = "A simple wrapper for aliyun cli" spec.homepage = "https://github.com/lululau/aly" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0") # 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(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'thor', '~> 1.2.1' spec.add_dependency 'terminal-table', '~> 3.0.2' spec.add_development_dependency "pry-byebug", "~> 3.10.1" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aly-0.3.5 | aly.gemspec |