Sha256: b4a955f642563c6873c8bf2b4a41df1b01d8dec112a2dcbda23d2be602353334

Contents?: true

Size: 1.21 KB

Versions: 5

Compression:

Stored size: 1.21 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name = 'confidante'
  spec.version = Confidante::VERSION
  spec.authors = ['Toby Clemson']
  spec.email = ['tobyclemson@gmail.com']

  spec.date = '2017-01-27'
  spec.summary = 'A configuration engine over hiera.'
  spec.description =
      'A configuration engine combining environment variables, programmatic ' +
          'overrides and the power of hiera.'
  spec.homepage = 'https://github.com/tobyclemson/confidante'
  spec.license = 'MIT'

  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.required_ruby_version = '>= 2.3'

  spec.add_dependency 'hiera', '~> 3.3', '>= 3.3.1'
  spec.add_dependency 'activesupport', '~> 5.1', '>= 5.1.1'

  spec.add_development_dependency 'bundler', '~> 1.14'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'gem-release', '~> 0.7'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
confidante-0.6.0 confidante.gemspec
confidante-0.5.0 confidante.gemspec
confidante-0.4.0 confidante.gemspec
confidante-0.3.0 confidante.gemspec
confidante-0.2.0 confidante.gemspec