Sha256: e7c02a5a2f9918e3726b37431847b88ed3b5a3a6c1d72046229a14a71412c4a2
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "digicert/cli/version" Gem::Specification.new do |spec| spec.name = "digicert-cli" spec.version = Digicert::CLI::VERSION spec.authors = ["Ribose Inc."] spec.email = ["operations@ribose.com"] spec.summary = %q{The CLI for digicert API} spec.description = %q{The CLI for digicert API} spec.homepage = "https://www.ribose.com" spec.files = `git ls-files`.split("\n") spec.test_files = `git ls-files -- {spec}/*`.split("\n") spec.require_paths = ["lib"] spec.bindir = "bin" spec.executables = "digicert" # Digicert gem dpendenceis # # We are developing this cli and the digicert gem at the same time # and we might not instantly push the digicert gems to rubygems while # we are adding any new features. So let's use the one from our github # and once we are close to finalize then we will switch to the actual # digicert gem from rubygems. # # spec.add_dependency "digicert", "~> 0.1.1" # spec.add_dependency "terminal-table" spec.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "dotenv" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "webmock", "~> 2.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
digicert-cli-0.1.0 | digicert-cli.gemspec |