puppetfile_editor 0.6.0 → 0.6.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 +4 -0
- data/bin/pfile +1 -1
- data/lib/puppetfile_editor/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: 362e6f21d26c644b49d50b1e0b57cdcf28b32fca
|
|
4
|
+
data.tar.gz: 2d65a424f9215a246a06cdde7fed12f46f5af34f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c9e011a05cf98d47efbe7392cb4c32cd9e4bf958ddb85d31a43a29cabee0d1363e82cd8f3d59dbc03e1e93bfea17e1e848826b93a9a2b7da77c811f1279c07a
|
|
7
|
+
data.tar.gz: 61154333de1a4d2b31adc70909cfc13adb20902c986582ea5c5e83841776d33948f43612b6ccd3413a9310b17f3b529af65d5f3c18366be16b66634220ddad42
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [0.6.1] - 2017-12-11
|
|
8
|
+
### Fixed
|
|
9
|
+
- Changed default CLI path to `Puppetfile` instead of `./Puppetfile` for better auditing.
|
|
10
|
+
|
|
7
11
|
## [0.6.0] - 2017-11-01
|
|
8
12
|
### Changed
|
|
9
13
|
- `Puppetfile#compare_with` now stores module type in the resulting diff.
|
data/bin/pfile
CHANGED
|
@@ -9,7 +9,7 @@ filename = File.basename(__FILE__)
|
|
|
9
9
|
# Display help if no arguments are specified
|
|
10
10
|
ARGV.push('-h') if ARGV.empty?
|
|
11
11
|
|
|
12
|
-
options = { puppetfile: '
|
|
12
|
+
options = { puppetfile: 'Puppetfile' }
|
|
13
13
|
|
|
14
14
|
subcommands = {
|
|
15
15
|
'edit' => OptionParser.new do |parser|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puppetfile_editor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eugene Piven
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-11
|
|
11
|
+
date: 2017-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
103
|
version: '0'
|
|
104
104
|
requirements: []
|
|
105
105
|
rubyforge_project:
|
|
106
|
-
rubygems_version: 2.6.
|
|
106
|
+
rubygems_version: 2.6.13
|
|
107
107
|
signing_key:
|
|
108
108
|
specification_version: 4
|
|
109
109
|
summary: Parse and edit Puppetfile
|