runsible 0.1.4.1 → 0.1.4.3
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/VERSION +1 -1
- data/lib/runsible.rb +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d98266f134d55a614fb28d95ef94fd025cb748fa
|
|
4
|
+
data.tar.gz: c003878d2bf6afc4c7a1dc095c0a08cf66306a6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6378116f873e96a2f421cf9ce9be3b999be0741bd99fb8d40f3501b55cf75049e7cdf49691840cc056ef9c68d3b21159ea5509f019ecb92949a47381fda0d02
|
|
7
|
+
data.tar.gz: 733f030f5f7b692a090f9e47dcf466533d6ba8a922f37c3d3f93550fd881937b48b8605d1a147dd915a9b8197dd6e857dc3dbbcec71e3b42058137174c4a6d80
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.4.
|
|
1
|
+
0.1.4.3
|
data/lib/runsible.rb
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
autoload :YAML, 'yaml'
|
|
2
2
|
autoload :Net, 'net/ssh'
|
|
3
3
|
autoload :Pony, 'pony'
|
|
4
4
|
autoload :Slop, 'slop'
|
|
5
5
|
|
|
6
6
|
# - this module is deliberately written without private state
|
|
7
|
-
# - it is meant to be used in the helper style
|
|
8
7
|
# - whenever a remote command sends data to STDOUT or STDERR, Runsible will
|
|
9
8
|
# immediately send it to the corresponding local IO
|
|
10
9
|
# - Runsible itself writes some warnings and timestamped command delimeters to
|