aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-support/hiera/hiera/add_hiera_gemspec.patch
blob: 7e302cfd5e516e79e6f64e91cd610a26d0319916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
diff -urN hiera-1.3.4_ori/hiera.gemspec hiera-1.3.4/hiera.gemspec
--- hiera-1.3.4_ori/hiera.gemspec	1970-01-01 08:00:00.000000000 +0800
+++ hiera-1.3.4/hiera.gemspec	2014-11-12 14:30:07.000000000 +0800
@@ -0,0 +1,19 @@
+$:.unshift(File.dirname(__FILE__) + '/lib')
+require 'hiera/version'
+
+Gem::Specification.new do |s|
+  s.name = 'hiera'
+  s.version = Hiera::VERSION
+  s.platform = Gem::Platform::RUBY
+  s.summary = 'A simple pluggable Hierarchical Database.'
+  s.description = s.summary
+  s.author = 'Yang Haibo'
+  s.email = 'b40869@freescale.com'
+  s.homepage = 'https://projects.puppetlabs.com/projects/hiera'
+  s.license = 'Apache 2.0'
+
+  s.bindir       = 'bin'
+  s.executables  = ['hiera']
+  s.require_path = 'lib'
+  s.files = %w(LICENSE README.md Rakefile) + Dir.glob('{lib,spec}/**/*')
+end