pdk 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -1
- data/README.md +8 -8
- data/lib/pdk/validators/puppet/puppet_lint.rb +1 -1
- data/lib/pdk/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 301b494ed7b8c7ab761966b17ce8cb0d2f152ad2
|
|
4
|
+
data.tar.gz: 6d048ae918d40c914ad811c4393f41a035858a25
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d6ed916068cd7cbfbaa6e39d4fc67785db19bf6163231e168a9fb73b4aa965c000dc44ee04003f002c4084f987a590b05c04ec6cb9fc35675c34af4be69d063
|
|
7
|
+
data.tar.gz: 26c7483fb6c195ea642a40e6af0c3222f416f2e5dfe73038b3afee68fdd807c214ef77fe16891f9c4c110f1ac0a395c1c1cff7c1c378a9b93b0fd89023732148
|
data/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
## [v1.2.
|
|
6
|
+
## [v1.2.1](https://github.com/puppetlabs/pdk/tree/v1.2.1) (2017-10-26)
|
|
7
|
+
|
|
8
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.2.0...v1.2.1)
|
|
9
|
+
|
|
10
|
+
**Fixed bugs:**
|
|
11
|
+
|
|
12
|
+
- Add --relative cli argument for autoload layout testing in puppet-lint [\#325](https://github.com/puppetlabs/pdk/pull/325) ([spacepants](https://github.com/spacepants))
|
|
13
|
+
|
|
14
|
+
## [v1.2.0](https://github.com/puppetlabs/pdk/tree/v1.2.0) (2017-10-06)
|
|
7
15
|
|
|
8
16
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.1.0...v1.2.0)
|
|
9
17
|
|
data/README.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* [Experimental features](#experimental-features)
|
|
6
6
|
* [Module compatibility](#module-compatibility)
|
|
7
7
|
* [Contributing](#contributing)
|
|
8
|
+
* [Contact Information](#contact-information)
|
|
8
9
|
|
|
9
10
|
The Puppet Development Kit (PDK) includes key Puppet code development and testing tools for Linux, Windows, and OS X workstations, so you can install one package with the tools you need to create and validate new modules.
|
|
10
11
|
|
|
@@ -27,11 +28,11 @@ rspec-puppet-facts | Adds support for running rspec-puppet tests against the fac
|
|
|
27
28
|
|
|
28
29
|
Download and install the newest package matching your platform from the [download](https://puppet.com/download-puppet-development-kit) page. If you are using Windows, remember to close any open PowerShell windows.
|
|
29
30
|
|
|
30
|
-
For complete installation information, see the [PDK documentation](https://
|
|
31
|
+
For complete installation information, see the [PDK documentation](https://puppet.com/docs/pdk/latest/pdk_install.html).
|
|
31
32
|
|
|
32
33
|
## Basic usage
|
|
33
34
|
|
|
34
|
-
PDK can generate modules and classes, validate module metadata, style, and syntax, and run unit tests. This README contains very basic usage information---for complete usage information, see the [PDK documentation](https://
|
|
35
|
+
PDK can generate modules and classes, validate module metadata, style, and syntax, and run unit tests. This README contains very basic usage information---for complete usage information, see the [PDK documentation](https://puppet.com/docs/pdk/latest/pdk_install.html).
|
|
35
36
|
|
|
36
37
|
### Generate a module
|
|
37
38
|
|
|
@@ -129,13 +130,8 @@ rake build # Build puppet module package
|
|
|
129
130
|
|
|
130
131
|
#### Known issues
|
|
131
132
|
|
|
132
|
-
* `pdk bundle` command on Windows doesn't allow usage suggested by pdk help [PDK-408](https://tickets.puppetlabs.com/browse/PDK-408)
|
|
133
133
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
The issue is that PDK is consuming command line options meant for the subcommand. To work around this, run `pdk bundle exec` with a string specifying the command you want to run with its command line options.
|
|
137
|
-
|
|
138
|
-
For example: `pdk bundle exec "bundle install --binstubs"`
|
|
134
|
+
Note that for PowerShell the `--` must be escaped using a backtick ( <code>`-- </code> ) or the shell parses it and strips it out of the command. See [PDK-408](https://tickets.puppet.com/browse/PDK-408) for details.
|
|
139
135
|
|
|
140
136
|
## Module Compatibility
|
|
141
137
|
|
|
@@ -144,3 +140,7 @@ For example: `pdk bundle exec "bundle install --binstubs"`
|
|
|
144
140
|
## Contributing
|
|
145
141
|
|
|
146
142
|
PDK encourages community contributions. See the [CONTRIBUTING.md](CONTRIBUTING.md) file for development notes.
|
|
143
|
+
|
|
144
|
+
## Contact Information
|
|
145
|
+
|
|
146
|
+
To contact us with questions: [pdk-maintainers@puppet.com](mailto:pdk-maintainers@puppet.com)
|
data/lib/pdk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-10-
|
|
11
|
+
date: 2017-10-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -239,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
239
239
|
version: '0'
|
|
240
240
|
requirements: []
|
|
241
241
|
rubyforge_project:
|
|
242
|
-
rubygems_version: 2.5.
|
|
242
|
+
rubygems_version: 2.5.1
|
|
243
243
|
signing_key:
|
|
244
244
|
specification_version: 4
|
|
245
245
|
summary: A key part of the Puppet Development Kit, the shortest path to better modules
|