jerbil 1.4.5 → 1.4.6
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.txt +5 -1
- data/bin/jerbil +4 -4
- data/lib/jerbil/version.rb +5 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OGFjYzA3YzQ5MDk0NWU5NmFkMjk4ZDRiM2ZjZjEzNjI0ZTNiNjczMQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YmFkZTJjMTllY2JkMTdlNmRlNzc4ZWIwMDFlZjI0ZmNjODM1ZDBlNA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NmNjN2E2MzA1NmZmN2JlOTFlZDBjYTA3YWVmYzQ5YTJlMDgxNzA4YzA3YTUx
|
10
|
+
ZDRkNWM4YzNhYWMzZTdiMDc4YjI0ZWFjNzA2Y2FkOWIxZTdlOTVkMDAxZTYx
|
11
|
+
MDk5OTJkMDcxMDJjNTYxNGMxZWE0ZmE2MDdmMmM3MmNjOTNkMmI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZGU5MzcxZDViZjEyZTM3OTZkNWQyZDBiYjAxOTdlNjhiZjdjNDBlMzVjYTMy
|
14
|
+
MDFiNjczMTJlZGNkYmExOTk0ODE5ZGI1YWIyODBhYThjODY4MGRjMGU0Yzk4
|
15
|
+
M2I4NzUwMTNkMjZiYmQzZGRiMmE1ODE2NGNkNjQ2MTNjOTNhOWM=
|
data/History.txt
CHANGED
@@ -4,9 +4,13 @@
|
|
4
4
|
|
5
5
|
==History
|
6
6
|
|
7
|
+
[jerbil-1.4.6 17-Oct-2014]
|
8
|
+
|
9
|
+
Fix change to jerbil remotes so that it works!
|
10
|
+
|
7
11
|
[jerbil-1.4.5 17-Oct-2014]
|
8
12
|
|
9
|
-
Add server version to
|
13
|
+
Add server version to verbose out of jerbil remotes and add system logging for start and
|
10
14
|
end of monitor process.
|
11
15
|
|
12
16
|
[jerbil-1.4.4 13-Oct-2014]
|
data/bin/jerbil
CHANGED
@@ -113,11 +113,11 @@ class Jerbs < Optplus::Parser
|
|
113
113
|
end #
|
114
114
|
if option? :verbose then
|
115
115
|
begin
|
116
|
-
say " Jerbil server version: #{remote.version}"
|
116
|
+
say " Jerbil server version: #{remote.connect.version}"
|
117
117
|
say " Running under Ruby version: #{remote.connect.ruby_version}"
|
118
|
-
say " Remote server has been up since #{remote.started.strftime('%d %b %Y at %H:%M')}"
|
119
|
-
rescue
|
120
|
-
|
118
|
+
say " Remote server has been up since #{remote.connect.started.strftime('%d %b %Y at %H:%M')}"
|
119
|
+
#rescue
|
120
|
+
# say " No info on ruby version from this server"
|
121
121
|
end
|
122
122
|
end
|
123
123
|
end
|
data/lib/jerbil/version.rb
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
# Created by Jevoom
|
2
2
|
#
|
3
3
|
# 17-Oct-2014
|
4
|
-
#
|
5
|
-
# end of monitor process.
|
4
|
+
# Fix change to jerbil remotes so that it works!
|
6
5
|
|
7
6
|
module Jerbil
|
8
|
-
# version set to 1.4.
|
9
|
-
Version = '1.4.
|
7
|
+
# version set to 1.4.6
|
8
|
+
Version = '1.4.6'
|
10
9
|
# date set to 17-Oct-2014
|
11
10
|
Version_Date = '17-Oct-2014'
|
12
|
-
#ident string set to: jerbil-1.4.
|
13
|
-
Ident = 'jerbil-1.4.
|
11
|
+
#ident string set to: jerbil-1.4.6 17-Oct-2014
|
12
|
+
Ident = 'jerbil-1.4.6 17-Oct-2014'
|
14
13
|
end
|