percy 0.0.3 → 0.0.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.
- data/README.rdoc +1 -1
- data/lib/percy.rb +5 -1
- data/lib/percylogger.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
data/lib/percy.rb
CHANGED
|
@@ -8,7 +8,7 @@ require 'thread'
|
|
|
8
8
|
Thread.abort_on_exception = true
|
|
9
9
|
|
|
10
10
|
class Percy
|
|
11
|
-
VERSION = 'Percy 0.0.
|
|
11
|
+
VERSION = 'Percy 0.0.4 (http://github.com/tbuehlmann/percy)'
|
|
12
12
|
|
|
13
13
|
Config = Struct.new(:server, :port, :password, :nick, :username, :verbose, :logging)
|
|
14
14
|
|
|
@@ -378,6 +378,10 @@ class Percy
|
|
|
378
378
|
end
|
|
379
379
|
end
|
|
380
380
|
|
|
381
|
+
def nick
|
|
382
|
+
@config.nick
|
|
383
|
+
end
|
|
384
|
+
|
|
381
385
|
# connect!
|
|
382
386
|
def connect
|
|
383
387
|
begin
|
data/lib/percylogger.rb
CHANGED