puppetlabs_spec_helper 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/puppetlabs_spec_helper/rake_tasks.rb +1 -1
- data/lib/puppetlabs_spec_helper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b893338e787bafe13cafce81b8513264ef35cd74
|
4
|
+
data.tar.gz: 4c1bcdbcf336de9486e52ee9c6ddd1ff41d23157
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8744098fa158561caf9b31abce27fcbc5fa85106398dba473276cc52660ef4ecc8750388099cadb0845ac23082509fecf7eecd46cd234a2e6f28bab2960dcc42
|
7
|
+
data.tar.gz: 9ce7bad037d78361d29db6df4ac946cd236dfa7d09c19bff47b83c3d79f881e7f5289ed8f2eac0692ce814f3b01674b4f1939fd2ce1f455775bed86a9dbcf9e9
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
|
5
|
+
## [1.0.1] - 2015-11-06
|
6
|
+
### Summary:
|
7
|
+
This bugfix release fixes the Error vs. Errno bug in 1.0.0
|
8
|
+
|
9
|
+
### Fixed:
|
10
|
+
- Raise `Errno::ENOENT` instead of `Error::ENOENT`
|
11
|
+
|
5
12
|
## [1.0.0] - 2015-11-04
|
6
13
|
### Summary:
|
7
14
|
The first 1.0 release, though the gem has been considered stable for a while.
|
@@ -208,7 +215,8 @@ compatible yet.
|
|
208
215
|
### Added
|
209
216
|
* Initial release
|
210
217
|
|
211
|
-
[unreleased]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/1.0.
|
218
|
+
[unreleased]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/1.0.1...master
|
219
|
+
[1.0.1]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/1.0.0...1.0.1
|
212
220
|
[1.0.0]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/0.10.3...1.0.0
|
213
221
|
[0.10.3]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/0.10.2...0.10.3
|
214
222
|
[0.10.2]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/0.10.1...0.10.2
|
@@ -38,7 +38,7 @@ def fixtures(category)
|
|
38
38
|
|
39
39
|
begin
|
40
40
|
fixtures = YAML.load_file(fixtures_yaml)["fixtures"]
|
41
|
-
rescue
|
41
|
+
rescue Errno::ENOENT
|
42
42
|
return {}
|
43
43
|
rescue Psych::SyntaxError => e
|
44
44
|
abort("Found malformed YAML in #{fixtures_yaml} on line #{e.line} column #{e.column}: #{e.problem}")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppetlabs_spec_helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet Labs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|