Sha256: 0f101d28a25539c72fd81069124e52586b581464ed6ca55357225d951dbced23

Contents?: true

Size: 1.41 KB

Versions: 3

Compression:

Stored size: 1.41 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'muchkeys/version'

Gem::Specification.new do |spec|
  spec.name          = "muchkeys"
  spec.version       = MuchKeys::VERSION
  spec.authors       = ["Pat O'Brien", "Chris Dillon"]
  spec.email         = ["pobrien@goldstar.com", "cdillon@goldstar.com"]

  spec.summary       = %q{MuchKeys fetches keys from the ENV and then falls back to consul}
  spec.description   = %q{MuchKeys can handle app configuration and appsecrets}
  spec.homepage      = "https://www.goldstar.com"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # slop 4 was a rewrite and it breaks a few gems:
  # guard / pry.  This is sad for development but slop4 is better than slop3.
  spec.add_runtime_dependency "slop", "~> 4.2"

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.3"
  spec.add_development_dependency "webmock", "~> 1.20"
  spec.add_development_dependency "vcr", "~> 2.9"

  # slop 4 really, really needs this version of pry since they vendored it
  spec.add_development_dependency "pry", '=0.10.3'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
muchkeys-0.3.7 muchkeys.gemspec
muchkeys-0.3.6 muchkeys.gemspec
muchkeys-0.3.3 muchkeys.gemspec