pdk 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de851b0858e7870cf46b71f5a8647d3f9bc018a4
4
- data.tar.gz: ab01700a2ec0373c82224f0566948298eb0d1cb6
3
+ metadata.gz: 301b494ed7b8c7ab761966b17ce8cb0d2f152ad2
4
+ data.tar.gz: 6d048ae918d40c914ad811c4393f41a035858a25
5
5
  SHA512:
6
- metadata.gz: 325be6b7a78f09fa93e9f2b04a53251961cf21ad370e2d33ed8db251993c1529052123896382bccf5a39742507c81c11e38582b3c290d593796b32d5a6674028
7
- data.tar.gz: f21d503b3737b16874e7ef8d3410789104a93e8e7f76064fe82bd590d42fbbb8e6b3c6ae9a3bd76953677c3d2e093b87fbe68f9fa4e0456fbd9b8d2fda7ce0c1
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.0](https://github.com/puppetlabs/pdk/tree/v1.2.0) (2017-10-05)
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://docs.puppet.com/pdk/latest/pdk_install.html).
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://docs.puppet.com/pdk/).
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
- On Windows, the `pdk bundle` command doesn't allow `--` as a separator between pdk option flags and bundler option flags as suggested by `pdk help bundle`.
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)
@@ -23,7 +23,7 @@ module PDK
23
23
  end
24
24
 
25
25
  def self.parse_options(options, targets)
26
- cmd_options = ['--json']
26
+ cmd_options = ['--json', '--relative']
27
27
 
28
28
  cmd_options << '--fix' if options[:auto_correct]
29
29
 
data/lib/pdk/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module PDK
2
- VERSION = '1.2.0'.freeze
2
+ VERSION = '1.2.1'.freeze
3
3
  end
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.0
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-10 00:00:00.000000000 Z
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.2
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