diff options
Diffstat (limited to 'recipes-support/puppetlabs-stdlib/files/Add-gemspec.patch')
-rw-r--r-- | recipes-support/puppetlabs-stdlib/files/Add-gemspec.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/recipes-support/puppetlabs-stdlib/files/Add-gemspec.patch b/recipes-support/puppetlabs-stdlib/files/Add-gemspec.patch deleted file mode 100644 index fd65da6..0000000 --- a/recipes-support/puppetlabs-stdlib/files/Add-gemspec.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From e23971fcc1425e06a11484e552fbc631c43f44d4 Mon Sep 17 00:00:00 2001 | ||
2 | From: Mark Asselstine <mark.asselstine@windriver.com> | ||
3 | Date: Tue, 22 Dec 2015 11:05:22 -0500 | ||
4 | Subject: [PATCH] Add gemspec | ||
5 | |||
6 | Started with an example from here | ||
7 | http://guides.rubygems.org/make-your-own-gem/ | ||
8 | |||
9 | Upstream-Status: Inappropriate [embedded specific] | ||
10 | |||
11 | Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> | ||
12 | --- | ||
13 | puppetlabs-stdlib.gemspec | 12 ++++++++++++ | ||
14 | 1 file changed, 12 insertions(+) | ||
15 | create mode 100644 puppetlabs-stdlib.gemspec | ||
16 | |||
17 | diff --git a/puppetlabs-stdlib.gemspec b/puppetlabs-stdlib.gemspec | ||
18 | new file mode 100644 | ||
19 | index 0000000..6b7eee3 | ||
20 | --- /dev/null | ||
21 | +++ b/puppetlabs-stdlib.gemspec | ||
22 | @@ -0,0 +1,12 @@ | ||
23 | +Gem::Specification.new do |s| | ||
24 | + s.name = 'puppetlabs-stdlib' | ||
25 | + s.version = '4.10.0' | ||
26 | + s.date = '2015-12-15' | ||
27 | + s.summary = "Puppet Labs Standard Library module" | ||
28 | + s.description = s.summary | ||
29 | + s.authors = ["Puppet Labs"] | ||
30 | + s.email = '' | ||
31 | + s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob('{lib,spec}/**/*') | ||
32 | + s.homepage = 'https://github.com/puppetlabs/puppetlabs-stdlib' | ||
33 | + s.license = 'Apache 2.0' | ||
34 | +end | ||
35 | -- | ||
36 | 2.1.4 | ||
37 | |||