summaryrefslogtreecommitdiff
path: root/ats-cli.gemspec
diff options
context:
space:
mode:
authormokha <mokha@cisco.com>2018-03-17 17:03:15 -0600
committermokha <mokha@cisco.com>2018-03-17 17:03:15 -0600
commitec4dd1876b52d1887656b4adc662eb02a400d909 (patch)
tree99592f2eadb3ea709c7240cc304c97d8cf049de9 /ats-cli.gemspec
initial commit.
Diffstat (limited to 'ats-cli.gemspec')
-rw-r--r--ats-cli.gemspec36
1 files changed, 36 insertions, 0 deletions
diff --git a/ats-cli.gemspec b/ats-cli.gemspec
new file mode 100644
index 0000000..262211c
--- /dev/null
+++ b/ats-cli.gemspec
@@ -0,0 +1,36 @@
+
+lib = File.expand_path("../lib", __FILE__)
+$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+require "ats/cli/version"
+
+Gem::Specification.new do |spec|
+ spec.name = "ats-cli"
+ spec.version = Ats::Cli::VERSION
+ spec.authors = ["mokha"]
+ spec.email = ["mokha@cisco.com"]
+
+ spec.summary = %q{TODO: Write a short summary, because RubyGems requires one.}
+ spec.description = %q{TODO: Write a longer description or delete this line.}
+ spec.homepage = "TODO: Put your gem's website or public repo URL here."
+ spec.license = "MIT"
+
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
+ if spec.respond_to?(:metadata)
+ spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
+ else
+ raise "RubyGems 2.0 or newer is required to protect against " \
+ "public gem pushes."
+ end
+
+ spec.files = `git ls-files -z`.split("\x0").reject do |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"]
+
+ spec.add_development_dependency "bundler", "~> 1.16"
+ spec.add_development_dependency "rake", "~> 10.0"
+ spec.add_development_dependency "rspec", "~> 3.0"
+end