forked from puppetlabs/hiera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gemspec
44 lines (39 loc) · 1.36 KB
/
.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- 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.
begin
require 'hiera/version'
rescue LoadError
$LOAD_PATH.unshift(File.expand_path("../lib", __FILE__))
require 'hiera/version'
end
Gem::Specification.new do |s|
s.name = "hiera"
version = Hiera.version
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 hierarcical 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"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<json_pure>, [">= 0"])
else
s.add_dependency(%q<json_pure>, [">= 0"])
end
else
s.add_dependency(%q<json_pure>, [">= 0"])
end
end