puppet-module 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -44,6 +44,12 @@ There are a number of ways to run the `puppet-module` program:
44
44
 
45
45
  alias puppet-module=$PWD/bin/puppet-module
46
46
 
47
+ **N.B.** you must have Puppet installed locally for `puppet-module` to work.
48
+
49
+ If Puppet is not installed by your system's package manager, install the RubyGem with:
50
+
51
+ sudo gem install puppet
52
+
47
53
  Basics
48
54
  ------
49
55
 
@@ -119,25 +125,40 @@ For example, if this was version `0.0.1` of `myuser-mymodule`, then this
119
125
  would have created a `pkg/myuser-mymodule-0.0.1.tar.gz` release file.
120
126
 
121
127
  The build process reads a `Modulefile` in your module directory and uses
122
- its contents to direct its work.
128
+ its contents to build a `metadata.json` file. This generated JSON file
129
+ is included in the module release archive so that repositories and
130
+ installers can extract details from your release. Do **not** edit this
131
+ `metadata.json` file yourself, because it's clobbered each time during
132
+ the build process -- you should make all your changes to the
133
+ `Modulefile` instead.
123
134
 
124
- The `Modulefile` is a *Ruby domain-specific language (DSL)*.
135
+ All the files in the `pkg` directory of your module directory are
136
+ artifacts of the build process. You can delete them when you're done.
125
137
 
126
- Here's an example of a `Modulefile`:
138
+ Write a valid `Modulefile`
139
+ --------------------------
127
140
 
128
- name 'myuser-mymodule'
129
- version '0.0.1'
130
- dependency 'otheruser-othermodule', '1.2.3'
141
+ The Modulefile resembles a configuration or data file, but is actually a Ruby domain-specific language (DSL), which means it's evaluated as code by the puppet-module tool. A Modulefile consists of a series of method calls which write or append to the available fields in the metadata object.
131
142
 
132
- The build process reads the `Modulefile` and uses it to build a
133
- `metadata.json` file. This generated JSON file is included in the module
134
- release archive so that repositories and installers can extract details
135
- from your release. Do **not** edit this `metadata.json` file yourself
136
- because it's clobbered each time during the build process -- you should
137
- make all your changes to the `Modulefile` instead.
143
+ Normal rules of Ruby syntax apply:
138
144
 
139
- All the files in the `pkg` directory of your module directory are
140
- artifacts of the build process. You can delete them when you're done.
145
+ name 'myuser-mymodule'
146
+ version '0.0.1'
147
+ dependency( 'otheruser-othermodule', '1.2.3' )
148
+ description "This is a full description
149
+ of the module, and is being written as a multi-line string."
150
+
151
+ The following metadata fields/methods are available:
152
+
153
+ * `name` -- The full name of the module (e.g. "username-module").
154
+ * `version` -- The current version of the module.
155
+ * `dependency` -- A module that this module depends on. Unlike the other fields, the `dependency` method accepts up to three arguments: a module name, a version requirement, and a repository. A Modulefile may include multiple `dependency` lines.
156
+ * `source` -- The module's source. The use of this field is not specified.
157
+ * `author` -- The module's author. If not specified, this field will default to the username portion of the module's `name` field.
158
+ * `license` -- The license under which the module is made available.
159
+ * `summary` -- One-line description of the module.
160
+ * `description` -- Complete description of the module.
161
+ * `project_page` -- The module's website.
141
162
 
142
163
  Share a module
143
164
  --------------
data/Rakefile CHANGED
@@ -1,8 +1,12 @@
1
+ $LOAD_PATH << File.join(File.dirname(__FILE__), 'tasks')
2
+
3
+ Dir['tasks/**/*.rake'].each { |t| load t }
4
+
1
5
  require 'rubygems'
2
6
  require 'rake'
3
7
  require 'rake/gempackagetask'
4
8
  require 'fileutils'
5
- require 'ftools'
9
+ require 'ftools' if RUBY_VERSION =~ /^1.8/
6
10
 
7
11
  # Return filename matching an array of glob patterns, minus any ephemeral files
8
12
  # that don't belong in the gem.
@@ -44,6 +48,11 @@ gemspec = Gem::Specification.new do |gemspec|
44
48
  * Usage instructions: read "README.markdown" or run `puppet-module usage`
45
49
  * Changelog: read "CHANGES.markdown" or run `puppet-module changelog`
46
50
  * Puppet Forge: visit http://forge.puppetlabs.com/
51
+ * If you don't have Puppet installed locally by your system package
52
+ manager, please install it with:
53
+
54
+ sudo gem install puppet
55
+
47
56
 
48
57
  #{'*'*78}
49
58
  POST_INSTALL_MESSAGE
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.2
1
+ 0.3.3
@@ -86,8 +86,11 @@ require 'rubygems'
86
86
  # Load Puppet
87
87
  begin
88
88
  minimum_version = Gem::Version.new("0.25.0")
89
- message = "You must have Puppet #{minimum_version} or greater installed"
90
-
89
+ message = [ "You must have Puppet #{minimum_version} or greater installed",
90
+ "",
91
+ "Please either:",
92
+ " - install with your system's package manager",
93
+ " - install with RubyGems: sudo gem install puppet" ].join("\n")
91
94
  begin
92
95
  require 'puppet'
93
96
  rescue LoadError
@@ -20,7 +20,7 @@ module Puppet::Module::Tool
20
20
 
21
21
  def run
22
22
  check_clobber!
23
- build_dir = Puppet::Module::Tool::Cache.base_path + "tmp-unpacker-#{Digest::SHA1.hexdigest(@filename.basename)}"
23
+ build_dir = Puppet::Module::Tool::Cache.base_path + "tmp-unpacker-#{Digest::SHA1.hexdigest(@filename.basename.to_s)}"
24
24
  build_dir.mkpath
25
25
  begin
26
26
  FileUtils.cp @filename, build_dir
@@ -64,6 +64,6 @@ module Puppet::Module::Tool
64
64
  end
65
65
 
66
66
  end
67
-
67
+
68
68
  end
69
69
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppet-module
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 2
10
- version: 0.3.2
9
+ - 3
10
+ version: 0.3.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Igal Koshevoy
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-31 00:00:00 +11:00
18
+ date: 2011-04-15 00:00:00 +10:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -34,158 +34,158 @@ files:
34
34
  - Rakefile
35
35
  - VERSION
36
36
  - bin/puppet-module
37
- - lib/puppet/module/tool/checksums.rb
38
- - lib/puppet/module/tool/applications.rb
39
- - lib/puppet/module/tool/contents_description.rb
37
+ - lib/puppet/module/tool.rb
40
38
  - lib/puppet/module/tool/utils.rb
41
- - lib/puppet/module/tool/cache.rb
39
+ - lib/puppet/module/tool/applications/unreleaser.rb
42
40
  - lib/puppet/module/tool/applications/releaser.rb
43
- - lib/puppet/module/tool/applications/freezer.rb
44
- - lib/puppet/module/tool/applications/cleaner.rb
41
+ - lib/puppet/module/tool/applications/unpacker.rb
45
42
  - lib/puppet/module/tool/applications/checksummer.rb
46
43
  - lib/puppet/module/tool/applications/generator.rb
47
- - lib/puppet/module/tool/applications/application.rb
44
+ - lib/puppet/module/tool/applications/cleaner.rb
45
+ - lib/puppet/module/tool/applications/freezer.rb
48
46
  - lib/puppet/module/tool/applications/builder.rb
49
- - lib/puppet/module/tool/applications/unpacker.rb
50
- - lib/puppet/module/tool/applications/registrar.rb
51
- - lib/puppet/module/tool/applications/unreleaser.rb
52
47
  - lib/puppet/module/tool/applications/searcher.rb
48
+ - lib/puppet/module/tool/applications/application.rb
49
+ - lib/puppet/module/tool/applications/registrar.rb
53
50
  - lib/puppet/module/tool/applications/installer.rb
51
+ - lib/puppet/module/tool/skeleton.rb
52
+ - lib/puppet/module/tool/dependency.rb
53
+ - lib/puppet/module/tool/checksums.rb
54
+ - lib/puppet/module/tool/repository.rb
55
+ - lib/puppet/module/tool/applications.rb
54
56
  - lib/puppet/module/tool/utils/settings.rb
55
- - lib/puppet/module/tool/utils/interrogation.rb
56
57
  - lib/puppet/module/tool/utils/uri.rb
58
+ - lib/puppet/module/tool/utils/interrogation.rb
57
59
  - lib/puppet/module/tool/metadata.rb
58
- - lib/puppet/module/tool/repository.rb
59
60
  - lib/puppet/module/tool/cli.rb
60
- - lib/puppet/module/tool/dependency.rb
61
+ - lib/puppet/module/tool/contents_description.rb
61
62
  - lib/puppet/module/tool/modulefile.rb
62
- - lib/puppet/module/tool/skeleton.rb
63
- - lib/puppet/module/tool.rb
63
+ - lib/puppet/module/tool/cache.rb
64
+ - templates/generator/README.erb
64
65
  - templates/generator/metadata.json
66
+ - templates/generator/templates/README.markdown
65
67
  - templates/generator/tests/init.pp.erb
66
- - templates/generator/files/README.markdown
68
+ - templates/generator/spec/spec.opts
67
69
  - templates/generator/spec/README.markdown
68
70
  - templates/generator/spec/spec_helper.rb
69
- - templates/generator/spec/spec.opts
70
- - templates/generator/spec/unit/puppet/provider/README.markdown
71
71
  - templates/generator/spec/unit/puppet/type/README.markdown
72
- - templates/generator/README.erb
73
- - templates/generator/templates/README.markdown
74
- - templates/generator/Modulefile.erb
75
- - templates/generator/lib/puppet/facter/README.markdown
72
+ - templates/generator/spec/unit/puppet/provider/README.markdown
73
+ - templates/generator/lib/facter/README.markdown
76
74
  - templates/generator/lib/puppet/parser/functions/README.markdown
77
- - templates/generator/lib/puppet/provider/README.markdown
78
75
  - templates/generator/lib/puppet/type/README.markdown
76
+ - templates/generator/lib/puppet/provider/README.markdown
79
77
  - templates/generator/manifests/README.markdown
80
78
  - templates/generator/manifests/init.pp.erb
81
- - vendor/multipart-post-1.0/README.txt
82
- - vendor/multipart-post-1.0/Rakefile
83
- - vendor/multipart-post-1.0/test/test_composite_io.rb
84
- - vendor/multipart-post-1.0/test/net/http/post/test_multipart.rb
85
- - vendor/multipart-post-1.0/lib/composite_io.rb
86
- - vendor/multipart-post-1.0/lib/parts.rb
87
- - vendor/multipart-post-1.0/lib/net/http/post/multipart.rb
88
- - vendor/multipart-post-1.0/lib/multipartable.rb
89
- - vendor/multipart-post-1.0/Manifest.txt
90
- - vendor/facets-2.8.2-partial/lib/facets/kernel/tap.rb
91
- - vendor/facets-2.8.2-partial/lib/facets/kernel/returning.rb
92
- - vendor/thor-852190ae/REVISION
79
+ - templates/generator/files/README.markdown
80
+ - templates/generator/Modulefile.erb
81
+ - vendor/thor-852190ae/LICENSE
82
+ - vendor/thor-852190ae/spec/shell_spec.rb
83
+ - vendor/thor-852190ae/spec/shell/basic_spec.rb
84
+ - vendor/thor-852190ae/spec/shell/color_spec.rb
85
+ - vendor/thor-852190ae/spec/task_spec.rb
86
+ - vendor/thor-852190ae/spec/spec.opts
87
+ - vendor/thor-852190ae/spec/spec_helper.rb
88
+ - vendor/thor-852190ae/spec/thor_spec.rb
89
+ - vendor/thor-852190ae/spec/core_ext/ordered_hash_spec.rb
90
+ - vendor/thor-852190ae/spec/core_ext/hash_with_indifferent_access_spec.rb
91
+ - vendor/thor-852190ae/spec/fixtures/task.thor
92
+ - vendor/thor-852190ae/spec/fixtures/invoke.thor
93
93
  - vendor/thor-852190ae/spec/fixtures/bundle/main.thor
94
94
  - vendor/thor-852190ae/spec/fixtures/bundle/execute.rb
95
- - vendor/thor-852190ae/spec/fixtures/application.rb
96
- - vendor/thor-852190ae/spec/fixtures/task.thor
97
- - vendor/thor-852190ae/spec/fixtures/group.thor
98
- - vendor/thor-852190ae/spec/fixtures/script.thor
99
95
  - vendor/thor-852190ae/spec/fixtures/doc/config.rb
100
- - vendor/thor-852190ae/spec/fixtures/doc/%file_name%.rb.tt
101
96
  - vendor/thor-852190ae/spec/fixtures/doc/README
102
- - vendor/thor-852190ae/spec/fixtures/invoke.thor
103
- - vendor/thor-852190ae/spec/runner_spec.rb
104
- - vendor/thor-852190ae/spec/shell_spec.rb
97
+ - vendor/thor-852190ae/spec/fixtures/doc/%file_name%.rb.tt
98
+ - vendor/thor-852190ae/spec/fixtures/script.thor
99
+ - vendor/thor-852190ae/spec/fixtures/application.rb
100
+ - vendor/thor-852190ae/spec/fixtures/group.thor
105
101
  - vendor/thor-852190ae/spec/base_spec.rb
106
- - vendor/thor-852190ae/spec/group_spec.rb
107
- - vendor/thor-852190ae/spec/core_ext/ordered_hash_spec.rb
108
- - vendor/thor-852190ae/spec/core_ext/hash_with_indifferent_access_spec.rb
109
- - vendor/thor-852190ae/spec/invocation_spec.rb
110
- - vendor/thor-852190ae/spec/task_spec.rb
111
- - vendor/thor-852190ae/spec/actions_spec.rb
112
- - vendor/thor-852190ae/spec/parser/arguments_spec.rb
102
+ - vendor/thor-852190ae/spec/rake_compat_spec.rb
113
103
  - vendor/thor-852190ae/spec/parser/argument_spec.rb
104
+ - vendor/thor-852190ae/spec/parser/arguments_spec.rb
114
105
  - vendor/thor-852190ae/spec/parser/options_spec.rb
115
106
  - vendor/thor-852190ae/spec/parser/option_spec.rb
116
- - vendor/thor-852190ae/spec/thor_spec.rb
117
- - vendor/thor-852190ae/spec/spec_helper.rb
107
+ - vendor/thor-852190ae/spec/runner_spec.rb
108
+ - vendor/thor-852190ae/spec/actions_spec.rb
109
+ - vendor/thor-852190ae/spec/invocation_spec.rb
110
+ - vendor/thor-852190ae/spec/actions/create_file_spec.rb
118
111
  - vendor/thor-852190ae/spec/actions/directory_spec.rb
119
- - vendor/thor-852190ae/spec/actions/file_manipulation_spec.rb
120
112
  - vendor/thor-852190ae/spec/actions/empty_directory_spec.rb
121
- - vendor/thor-852190ae/spec/actions/create_file_spec.rb
113
+ - vendor/thor-852190ae/spec/actions/file_manipulation_spec.rb
122
114
  - vendor/thor-852190ae/spec/actions/inject_into_file_spec.rb
123
- - vendor/thor-852190ae/spec/spec.opts
124
115
  - vendor/thor-852190ae/spec/util_spec.rb
125
- - vendor/thor-852190ae/spec/rake_compat_spec.rb
126
- - vendor/thor-852190ae/spec/shell/color_spec.rb
127
- - vendor/thor-852190ae/spec/shell/basic_spec.rb
128
- - vendor/thor-852190ae/CHANGELOG.rdoc
129
- - vendor/thor-852190ae/bin/thor
130
- - vendor/thor-852190ae/bin/rake2thor
116
+ - vendor/thor-852190ae/spec/group_spec.rb
131
117
  - vendor/thor-852190ae/thor.gemspec
132
- - vendor/thor-852190ae/README.rdoc
133
- - vendor/thor-852190ae/Thorfile
134
- - vendor/thor-852190ae/LICENSE
135
118
  - vendor/thor-852190ae/lib/thor.rb
136
- - vendor/thor-852190ae/lib/thor/actions.rb
137
- - vendor/thor-852190ae/lib/thor/group.rb
119
+ - vendor/thor-852190ae/lib/thor/shell.rb
120
+ - vendor/thor-852190ae/lib/thor/shell/color.rb
121
+ - vendor/thor-852190ae/lib/thor/shell/basic.rb
122
+ - vendor/thor-852190ae/lib/thor/util.rb
123
+ - vendor/thor-852190ae/lib/thor/runner.rb
138
124
  - vendor/thor-852190ae/lib/thor/rake_compat.rb
139
- - vendor/thor-852190ae/lib/thor/base.rb
140
- - vendor/thor-852190ae/lib/thor/core_ext/file_binary_read.rb
141
- - vendor/thor-852190ae/lib/thor/core_ext/ordered_hash.rb
142
125
  - vendor/thor-852190ae/lib/thor/core_ext/hash_with_indifferent_access.rb
143
- - vendor/thor-852190ae/lib/thor/invocation.rb
126
+ - vendor/thor-852190ae/lib/thor/core_ext/ordered_hash.rb
127
+ - vendor/thor-852190ae/lib/thor/core_ext/file_binary_read.rb
128
+ - vendor/thor-852190ae/lib/thor/parser.rb
144
129
  - vendor/thor-852190ae/lib/thor/parser/options.rb
145
- - vendor/thor-852190ae/lib/thor/parser/arguments.rb
146
- - vendor/thor-852190ae/lib/thor/parser/argument.rb
147
130
  - vendor/thor-852190ae/lib/thor/parser/option.rb
131
+ - vendor/thor-852190ae/lib/thor/parser/argument.rb
132
+ - vendor/thor-852190ae/lib/thor/parser/arguments.rb
133
+ - vendor/thor-852190ae/lib/thor/version.rb
134
+ - vendor/thor-852190ae/lib/thor/task.rb
135
+ - vendor/thor-852190ae/lib/thor/error.rb
136
+ - vendor/thor-852190ae/lib/thor/group.rb
137
+ - vendor/thor-852190ae/lib/thor/invocation.rb
138
+ - vendor/thor-852190ae/lib/thor/actions/inject_into_file.rb
139
+ - vendor/thor-852190ae/lib/thor/actions/empty_directory.rb
148
140
  - vendor/thor-852190ae/lib/thor/actions/directory.rb
149
141
  - vendor/thor-852190ae/lib/thor/actions/file_manipulation.rb
150
- - vendor/thor-852190ae/lib/thor/actions/empty_directory.rb
151
142
  - vendor/thor-852190ae/lib/thor/actions/create_file.rb
152
- - vendor/thor-852190ae/lib/thor/actions/inject_into_file.rb
153
- - vendor/thor-852190ae/lib/thor/task.rb
154
- - vendor/thor-852190ae/lib/thor/error.rb
155
- - vendor/thor-852190ae/lib/thor/util.rb
156
- - vendor/thor-852190ae/lib/thor/shell.rb
157
- - vendor/thor-852190ae/lib/thor/runner.rb
158
- - vendor/thor-852190ae/lib/thor/version.rb
159
- - vendor/thor-852190ae/lib/thor/parser.rb
160
- - vendor/thor-852190ae/lib/thor/shell/basic.rb
161
- - vendor/thor-852190ae/lib/thor/shell/color.rb
143
+ - vendor/thor-852190ae/lib/thor/base.rb
144
+ - vendor/thor-852190ae/lib/thor/actions.rb
145
+ - vendor/thor-852190ae/bin/rake2thor
146
+ - vendor/thor-852190ae/bin/thor
147
+ - vendor/thor-852190ae/REVISION
148
+ - vendor/thor-852190ae/README.rdoc
149
+ - vendor/thor-852190ae/Thorfile
150
+ - vendor/thor-852190ae/CHANGELOG.rdoc
151
+ - vendor/multipart-post-1.0/test/test_composite_io.rb
152
+ - vendor/multipart-post-1.0/test/net/http/post/test_multipart.rb
153
+ - vendor/multipart-post-1.0/Rakefile
154
+ - vendor/multipart-post-1.0/lib/multipartable.rb
155
+ - vendor/multipart-post-1.0/lib/composite_io.rb
156
+ - vendor/multipart-post-1.0/lib/parts.rb
157
+ - vendor/multipart-post-1.0/lib/net/http/post/multipart.rb
158
+ - vendor/multipart-post-1.0/Manifest.txt
159
+ - vendor/multipart-post-1.0/README.txt
160
+ - vendor/facets-2.8.2-partial/lib/facets/kernel/returning.rb
161
+ - vendor/facets-2.8.2-partial/lib/facets/kernel/tap.rb
162
+ - spec/spec.opts
163
+ - spec/spec_helper.rb
162
164
  - spec/fixtures/releases/jamtur01-apache/metadata.json
163
- - spec/fixtures/releases/jamtur01-apache/tests/dev.pp
164
- - spec/fixtures/releases/jamtur01-apache/tests/vhost.pp
165
- - spec/fixtures/releases/jamtur01-apache/tests/php.pp
165
+ - spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb
166
+ - spec/fixtures/releases/jamtur01-apache/tests/init.pp
166
167
  - spec/fixtures/releases/jamtur01-apache/tests/apache.pp
167
168
  - spec/fixtures/releases/jamtur01-apache/tests/ssl.pp
168
- - spec/fixtures/releases/jamtur01-apache/tests/init.pp
169
- - spec/fixtures/releases/jamtur01-apache/files/httpd
170
- - spec/fixtures/releases/jamtur01-apache/files/test.vhost
169
+ - spec/fixtures/releases/jamtur01-apache/tests/php.pp
170
+ - spec/fixtures/releases/jamtur01-apache/tests/dev.pp
171
+ - spec/fixtures/releases/jamtur01-apache/tests/vhost.pp
171
172
  - spec/fixtures/releases/jamtur01-apache/Modulefile
172
- - spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb
173
- - spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb
174
173
  - spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb
174
+ - spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb
175
+ - spec/fixtures/releases/jamtur01-apache/manifests/init.pp
176
+ - spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp
177
+ - spec/fixtures/releases/jamtur01-apache/manifests/php.pp
178
+ - spec/fixtures/releases/jamtur01-apache/manifests/params.pp
175
179
  - spec/fixtures/releases/jamtur01-apache/manifests/dev.pp
176
180
  - spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp
177
- - spec/fixtures/releases/jamtur01-apache/manifests/params.pp
178
- - spec/fixtures/releases/jamtur01-apache/manifests/php.pp
179
- - spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp
180
- - spec/fixtures/releases/jamtur01-apache/manifests/init.pp
181
- - spec/spec_helper.rb
182
- - spec/spec.opts
183
- - spec/support/stub_http_support.rb
181
+ - spec/fixtures/releases/jamtur01-apache/files/test.vhost
182
+ - spec/fixtures/releases/jamtur01-apache/files/httpd
183
+ - spec/integration/cli_spec.rb
184
184
  - spec/support/output_support.rb
185
+ - spec/support/stub_http_support.rb
185
186
  - spec/support/testdir_support.rb
186
187
  - spec/unit/application_spec.rb
187
188
  - spec/unit/repository_spec.rb
188
- - spec/integration/cli_spec.rb
189
189
  has_rdoc: true
190
190
  homepage: http://github.com/puppetlabs/puppet-module-tool
191
191
  licenses: []
@@ -198,6 +198,11 @@ post_install_message: |
198
198
  * Usage instructions: read "README.markdown" or run `puppet-module usage`
199
199
  * Changelog: read "CHANGES.markdown" or run `puppet-module changelog`
200
200
  * Puppet Forge: visit http://forge.puppetlabs.com/
201
+ * If you don't have Puppet installed locally by your system package
202
+ manager, please install it with:
203
+
204
+ sudo gem install puppet
205
+
201
206
 
202
207
  ******************************************************************************
203
208
 
@@ -232,30 +237,30 @@ signing_key:
232
237
  specification_version: 3
233
238
  summary: The Puppet Module Tool manages Puppet modules
234
239
  test_files:
240
+ - spec/spec.opts
241
+ - spec/spec_helper.rb
235
242
  - spec/fixtures/releases/jamtur01-apache/metadata.json
236
- - spec/fixtures/releases/jamtur01-apache/tests/dev.pp
237
- - spec/fixtures/releases/jamtur01-apache/tests/vhost.pp
238
- - spec/fixtures/releases/jamtur01-apache/tests/php.pp
243
+ - spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb
244
+ - spec/fixtures/releases/jamtur01-apache/tests/init.pp
239
245
  - spec/fixtures/releases/jamtur01-apache/tests/apache.pp
240
246
  - spec/fixtures/releases/jamtur01-apache/tests/ssl.pp
241
- - spec/fixtures/releases/jamtur01-apache/tests/init.pp
242
- - spec/fixtures/releases/jamtur01-apache/files/httpd
243
- - spec/fixtures/releases/jamtur01-apache/files/test.vhost
247
+ - spec/fixtures/releases/jamtur01-apache/tests/php.pp
248
+ - spec/fixtures/releases/jamtur01-apache/tests/dev.pp
249
+ - spec/fixtures/releases/jamtur01-apache/tests/vhost.pp
244
250
  - spec/fixtures/releases/jamtur01-apache/Modulefile
245
- - spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb
246
- - spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb
247
251
  - spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb
252
+ - spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb
253
+ - spec/fixtures/releases/jamtur01-apache/manifests/init.pp
254
+ - spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp
255
+ - spec/fixtures/releases/jamtur01-apache/manifests/php.pp
256
+ - spec/fixtures/releases/jamtur01-apache/manifests/params.pp
248
257
  - spec/fixtures/releases/jamtur01-apache/manifests/dev.pp
249
258
  - spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp
250
- - spec/fixtures/releases/jamtur01-apache/manifests/params.pp
251
- - spec/fixtures/releases/jamtur01-apache/manifests/php.pp
252
- - spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp
253
- - spec/fixtures/releases/jamtur01-apache/manifests/init.pp
254
- - spec/spec_helper.rb
255
- - spec/spec.opts
256
- - spec/support/stub_http_support.rb
259
+ - spec/fixtures/releases/jamtur01-apache/files/test.vhost
260
+ - spec/fixtures/releases/jamtur01-apache/files/httpd
261
+ - spec/integration/cli_spec.rb
257
262
  - spec/support/output_support.rb
263
+ - spec/support/stub_http_support.rb
258
264
  - spec/support/testdir_support.rb
259
265
  - spec/unit/application_spec.rb
260
266
  - spec/unit/repository_spec.rb
261
- - spec/integration/cli_spec.rb