lita-puppet 0.2.2 → 0.2.4

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 13f87adb8fc368b1d5fc3131f104779fe867b005
4
- data.tar.gz: 3992ae7a580ce8a977ae31f42d90213c929fcf78
3
+ metadata.gz: d7f6d78b3f76dacb146a29d03ef2737994a8eb2b
4
+ data.tar.gz: 1a4d01f63d0ceaacc73568cf1b2c0d6cd39f5d82
5
5
  SHA512:
6
- metadata.gz: 271ffa1c3b9e009a0f022b8dd4e314f7ce3073b512393dbafec59d9f7d3d43b68035fd7965e9a9e89ccc2032a25d978765ffb31bed493ec178bbc2a9753aa572
7
- data.tar.gz: 21e6c2183d92f170fc6a4247e15598bed72e58e4d8291cd7a8e6b973c0cd4e45ccdd732733c2c65fd304658988dfa8c98721cfd95b9c16564912e40f4b7d3efc
6
+ metadata.gz: 28cd46dfcc3e1f7c1899f5f53bb34d4eb4ea861ccfcafed60e68a19a2fc751dfb34aed615e3589b025e5b5dee3bdc7db6cfc25d81a1d819ff363b2263d039bcb
7
+ data.tar.gz: b4b1477197294e1b8a1cf43ad02c4c1687977b2f895c5b7ae6f081c46772ded05ad064f17f94fdb9654c20d074bdc0c0f076b61e91510a2ef9d724fe66dd1aa5
@@ -35,7 +35,12 @@ module Lita
35
35
  ret = nil
36
36
 
37
37
  # TODO: better error handling
38
- puppet_master = Rye::Box.new(config.master_hostname, user: user, password_prompt: false)
38
+ puppet_master = Rye::Box.new(
39
+ config.master_hostname,
40
+ user: user,
41
+ password_prompt: false
42
+ )
43
+
39
44
  begin
40
45
  Timeout::timeout(600) do
41
46
  puppet_master.cd control_repo
@@ -79,7 +84,12 @@ module Lita
79
84
  exception = nil
80
85
 
81
86
  # TODO: better error handling
82
- remote = Rye::Box.new(host, user: user, password_prompt: false)
87
+ remote = Rye::Box.new(
88
+ host,
89
+ user: user,
90
+ password_prompt: false
91
+ )
92
+
83
93
  begin
84
94
  Timeout::timeout(300) do
85
95
  remote.cd '/tmp'
data/lita-puppet.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "lita-puppet"
3
- spec.version = "0.2.2"
3
+ spec.version = "0.2.4"
4
4
  spec.authors = ["Jonathan Gnagy"]
5
5
  spec.email = ["jgnagy@knuedge.com"]
6
6
  spec.description = "Some basic Puppet interactions for Lita"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-puppet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy