-
Notifications
You must be signed in to change notification settings - Fork 190
/
.gemspec
27 lines (25 loc) · 979 Bytes
/
.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
#
# PLEASE NOTE - This gemspec is intended for use with Bundler from source, not
# for building the official Gem. Please see the [packaging
# repository](https://github.com/puppetlabs/packaging) for information on how
# to build release packages.
Gem::Specification.new do |s|
s.name = "hiera"
version = "3.12.1"
mdata = version.match(/(\d+\.\d+\.\d+)/)
s.version = mdata ? mdata[1] : version
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Puppet Labs"]
s.date = "2013-04-03"
s.description = "A pluggable data store for hierarchical data"
s.email = "[email protected]"
s.executables = ["hiera"]
s.files = ["bin/hiera"]
s.homepage = "https://github.com/puppetlabs/hiera"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.25"
s.summary = "Light weight hierarchical data store"
s.license = "Apache-2.0"
s.required_ruby_version = '>= 2.5.0'
end