beaker-facter 0.1.0 → 0.1.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 +8 -8
- data/HISTORY.md +27 -3
- data/lib/beaker-facter.rb +14 -0
- data/lib/beaker-facter/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NzJiMDA4MmQxYmY5M2UxNWVkMzJmNmNkNTM2YmYyMzI3NDg3OGZhMA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MWE3NzM0YTcwYjQzYTRjYmI1YmQ1NDEwYzdhNTdlMWRmYTAyYmU4MA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NWI2NzQwOGMyZGM4ZmU0ZDQ1MTI0NzQxY2RhMjU1MTUyMmJjYzQyYWMzYzE3
|
|
10
|
+
M2QwMzdlN2RkYzk1ZTNhMWFjYTY1NzI2ZGQzOTNkZDUzNzJiNGU1ZjliMjMw
|
|
11
|
+
NmFlNGYzOTUxNWQ1YTQxNWVlMzdmYWMzMDJiMmY1OTAwNDU0MDE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZmM0MmE3NDIyMDdlZjQ0OTJjY2QwNjYwMDlkZTY3YTA0MWY5MjQzMDZmYjMz
|
|
14
|
+
MzYwMDhiMTA5NDYxYzRmNGM0M2U3YWZlNWY5NDFhYzdjOGJiNjY5N2MzOTQw
|
|
15
|
+
YTdlZTNkNTU1MTIzMDllNzI0ZWFlZmRlNDNmOGVlZTdiZGJhOTg=
|
data/HISTORY.md
CHANGED
|
@@ -1,8 +1,32 @@
|
|
|
1
|
-
#
|
|
1
|
+
# worker - History
|
|
2
2
|
## Tags
|
|
3
|
-
* [LATEST -
|
|
3
|
+
* [LATEST - 23 Jan, 2017 (64a13c62)](#LATEST)
|
|
4
|
+
* [0.1.0 - 29 Jan, 2016 (3851dcdc)](#0.1.0)
|
|
4
5
|
|
|
5
6
|
## Details
|
|
6
|
-
### <a name = "LATEST">LATEST -
|
|
7
|
+
### <a name = "LATEST">LATEST - 23 Jan, 2017 (64a13c62)
|
|
8
|
+
|
|
9
|
+
* (GEM) update beaker-facter version to 0.1.1 (64a13c62)
|
|
10
|
+
|
|
11
|
+
* Merge pull request #1 from tvpartytonight/BKR-1044 (e92b166c)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
Merge pull request #1 from tvpartytonight/BKR-1044
|
|
16
|
+
|
|
17
|
+
(BKR-1044) add in boiler-plate include mechanism
|
|
18
|
+
```
|
|
19
|
+
* (BKR-1044) add in boiler-plate include mechanism (3b9ae70c)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
(BKR-1044) add in boiler-plate include mechanism
|
|
24
|
+
|
|
25
|
+
Previous to this commit, we did not have any of beaker's boiler plate
|
|
26
|
+
for including beaker-libraries in this repo; this adds in the mechanism
|
|
27
|
+
where the DSL's register method is called and then the DSL is reloaded
|
|
28
|
+
to include the new library.
|
|
29
|
+
```
|
|
30
|
+
### <a name = "0.1.0">0.1.0 - 29 Jan, 2016 (3851dcdc)
|
|
7
31
|
|
|
8
32
|
* Initial release.
|
data/lib/beaker-facter.rb
CHANGED
|
@@ -9,3 +9,17 @@ module Beaker
|
|
|
9
9
|
end
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
|
+
|
|
13
|
+
# Boilerplate DSL inclusion mechanism:
|
|
14
|
+
# First we register our module with the Beaker DSL
|
|
15
|
+
Beaker::DSL.register( Beaker::DSL::Helpers::Facter )
|
|
16
|
+
|
|
17
|
+
# Second,We need to reload the DSL, but before we had reloaded
|
|
18
|
+
# it in the global namespace, which result in errors colliding
|
|
19
|
+
# with other gems rightfully not expecting beaker's dsl to
|
|
20
|
+
# be available at the global level.
|
|
21
|
+
module Beaker
|
|
22
|
+
class TestCase
|
|
23
|
+
include Beaker::DSL
|
|
24
|
+
end
|
|
25
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-facter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppetlabs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -204,4 +204,3 @@ signing_key:
|
|
|
204
204
|
specification_version: 4
|
|
205
205
|
summary: Beaker DSL Extension Facter Helpers
|
|
206
206
|
test_files: []
|
|
207
|
-
has_rdoc:
|