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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OThlZDI4MmUxYTY5MTEyZDhlYzA2NmI4MGU2MTI2N2Y0Zjk1OTljNw==
4
+ NzJiMDA4MmQxYmY5M2UxNWVkMzJmNmNkNTM2YmYyMzI3NDg3OGZhMA==
5
5
  data.tar.gz: !binary |-
6
- ZGVmYTRiNjEzZjNhYWJlYTIxMzI2MmFkNmRkNmNlYTE3MjA0MDlmMQ==
6
+ MWE3NzM0YTcwYjQzYTRjYmI1YmQ1NDEwYzdhNTdlMWRmYTAyYmU4MA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MTYwM2I1ODI3MjI2ODIyZGFiMWYxZTViZTQ0M2YwZjM0MWM4Yjc2ZWIwNDM0
10
- M2RhZmVmMmYyYTk4MmM0NGJmNTNmNmZjYWRkOGE5OWMyZjVlN2EyODZhYjhl
11
- N2ZmMzIzZmM5OGIxNDRmNzVjMTQ5NTRiYTI2MmRjN2Q3ZTFlNzQ=
9
+ NWI2NzQwOGMyZGM4ZmU0ZDQ1MTI0NzQxY2RhMjU1MTUyMmJjYzQyYWMzYzE3
10
+ M2QwMzdlN2RkYzk1ZTNhMWFjYTY1NzI2ZGQzOTNkZDUzNzJiNGU1ZjliMjMw
11
+ NmFlNGYzOTUxNWQ1YTQxNWVlMzdmYWMzMDJiMmY1OTAwNDU0MDE=
12
12
  data.tar.gz: !binary |-
13
- MzM5YzVmYmU4MzM2ZmI2MjczZWJjNGViNmQ5ZDJlOWJjNTVjYjE0NGJkZDhk
14
- MjYyMzA5NjM0OGE2M2QxZWE3MWZjMmM0ODcwMWEzMjViYzRkYTg5OWQwM2Mz
15
- NGQwMWM2Zjg5OGU4NjA4OWU1NzVlZjJmM2EyN2ZiOWZkOTY0NjU=
13
+ ZmM0MmE3NDIyMDdlZjQ0OTJjY2QwNjYwMDlkZTY3YTA0MWY5MjQzMDZmYjMz
14
+ MzYwMDhiMTA5NDYxYzRmNGM0M2U3YWZlNWY5NDFhYzdjOGJiNjY5N2MzOTQw
15
+ YTdlZTNkNTU1MTIzMDllNzI0ZWFlZmRlNDNmOGVlZTdiZGJhOTg=
data/HISTORY.md CHANGED
@@ -1,8 +1,32 @@
1
- # default - History
1
+ # worker - History
2
2
  ## Tags
3
- * [LATEST - 5 Nov, 2015 (ece69e29)](#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 - 5 Nov, 2015 (ece69e29)
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
@@ -3,7 +3,7 @@ module Beaker
3
3
  module Helpers
4
4
  module Facter
5
5
  module Version
6
- STRING = '0.1.0'
6
+ STRING = '0.1.1'
7
7
  end
8
8
  end
9
9
  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.0
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: 2016-01-29 00:00:00.000000000 Z
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: