Sha256: 7f923e9fb0b95145ce4e7c08f4427ccda0c1360db15a030a6739247df5ce2212
Contents?: true
Size: 1.26 KB
Versions: 4
Compression:
Stored size: 1.26 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'confidante/version' require 'date' Gem::Specification.new do |spec| spec.name = 'confidante' spec.version = Confidante::VERSION spec.authors = ['Toby Clemson'] spec.email = ['tobyclemson@gmail.com'] spec.date = Date.today.to_s 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/infrablocks/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.4.7' spec.add_dependency 'hiera', '~> 3.3', '>= 3.3.1' spec.add_dependency 'activesupport', '>= 4' spec.add_dependency 'shikashi', '~> 0.6' spec.add_development_dependency 'bundler', '~> 2.0' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.9' spec.add_development_dependency 'gem-release', '~> 2.0' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
confidante-0.19.0 | confidante.gemspec |
confidante-0.18.0.pre.1 | confidante.gemspec |
confidante-0.17.0 | confidante.gemspec |
confidante-0.16.0.pre.1 | confidante.gemspec |