foreman_templates 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/foreman_templates/version.rb +1 -1
- data/lib/templates.rake +2 -2
- metadata +16 -22
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 07627f5a5c0424fc0f049f6e0c0716d6db458186
|
4
|
+
data.tar.gz: 27008e747a0066e41ecf5e421b40e0e78b2245ee
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cba8e6d62deffc489fcabdddf43d0765dcc974476494e7d473688756cc21ca9eec22fb631fd08b85d2869ec061ef655eb86fc4c24ec6f2536595f742d8bb3c48
|
7
|
+
data.tar.gz: ebd2a3077c4ee0c49d53c559cb92fe2e72a26a6d6c3183a1d23bbdf488beceef202e10a674dbda98fabb2354e0783e8d275f57e2a29aa34be65bb59c318a5e9c
|
data/lib/templates.rake
CHANGED
@@ -130,14 +130,14 @@ namespace :templates do
|
|
130
130
|
#* verbose => Print extra information during the run [false]
|
131
131
|
#* repo => Sync templates from a different Git repo [https://github.com/theforeman/community-templates]
|
132
132
|
#* branch => Branch in Git repo [default branch]
|
133
|
-
#* prefix => The string all imported templates should begin with [Community]
|
133
|
+
#* prefix => The string all imported templates should begin with [Community ]
|
134
134
|
#* dirname => The directory within the git tree containing the templates [/]
|
135
135
|
#* filter => Import names matching this regex (case-insensitive; snippets are not filtered)
|
136
136
|
#* associate => Associate to OS, always, new or never [new]
|
137
137
|
|
138
138
|
@verbose = ( ENV['verbose'] and ENV['verbose'] != 'false' ) ? true : false
|
139
139
|
@associate = ENV['associate'] ? ENV['associate'] : 'new'
|
140
|
-
prefix = ENV['prefix'] ? ENV['prefix'] :
|
140
|
+
prefix = ENV['prefix'] ? ENV['prefix'] : 'Community '
|
141
141
|
dirname = ENV['dirname'] ? ENV['dirname'] : '/'
|
142
142
|
filter = ENV['filter'] ? ENV['filter'] : nil
|
143
143
|
repo = ENV['repo'] ? ENV['repo'] : "https://github.com/theforeman/community-templates.git"
|
metadata
CHANGED
@@ -1,46 +1,41 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_templates
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
5
|
-
prerelease:
|
4
|
+
version: 2.0.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Greg Sutcliffe
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2015-
|
11
|
+
date: 2015-12-02 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: diffy
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '0'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: git
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ">="
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - ">="
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
description: Engine to synchronise provisioning templates from GitHub
|
@@ -51,36 +46,35 @@ extra_rdoc_files:
|
|
51
46
|
- LICENSE
|
52
47
|
- README.md
|
53
48
|
files:
|
54
|
-
- lib/foreman_templates/version.rb
|
55
|
-
- lib/foreman_templates/engine.rb
|
56
|
-
- lib/templates.rake
|
57
|
-
- lib/foreman_templates.rb
|
58
49
|
- LICENSE
|
59
|
-
- Rakefile
|
60
50
|
- README.md
|
51
|
+
- Rakefile
|
52
|
+
- lib/foreman_templates.rb
|
53
|
+
- lib/foreman_templates/engine.rb
|
54
|
+
- lib/foreman_templates/version.rb
|
55
|
+
- lib/templates.rake
|
61
56
|
homepage: http://github.com/theforeman/foreman_templates
|
62
57
|
licenses:
|
63
58
|
- GPL-3
|
59
|
+
metadata: {}
|
64
60
|
post_install_message:
|
65
61
|
rdoc_options: []
|
66
62
|
require_paths:
|
67
63
|
- lib
|
68
64
|
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
-
none: false
|
70
65
|
requirements:
|
71
|
-
- -
|
66
|
+
- - ">="
|
72
67
|
- !ruby/object:Gem::Version
|
73
68
|
version: '0'
|
74
69
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
-
none: false
|
76
70
|
requirements:
|
77
|
-
- -
|
71
|
+
- - ">="
|
78
72
|
- !ruby/object:Gem::Version
|
79
73
|
version: '0'
|
80
74
|
requirements: []
|
81
75
|
rubyforge_project:
|
82
|
-
rubygems_version:
|
76
|
+
rubygems_version: 2.4.5.1
|
83
77
|
signing_key:
|
84
|
-
specification_version:
|
78
|
+
specification_version: 4
|
85
79
|
summary: Template-syncing engine for Foreman
|
86
80
|
test_files: []
|