net-yail 1.0.0 → 1.0.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.
@@ -0,0 +1,4 @@
1
+ 2008-07-01:
2
+ * Fixed IRCBot to be part of the net/yail namespace so you can subclass
3
+ without copying the file into your own project
4
+ * Fixed IRCBot to actually be usable (fixed require)
@@ -1,5 +1,5 @@
1
1
  require 'rubygems'
2
- gem 'net-yail'
2
+ require 'net/yail'
3
3
 
4
4
  # My abstraction from adapter to a real bot.
5
5
  #
@@ -90,7 +90,7 @@ class IRCBot
90
90
 
91
91
  private
92
92
  # Basic handler for joining a single channel upon successful registration
93
- def welcome
93
+ def welcome(text, args)
94
94
  @irc.join(@channel)
95
95
  # Let the default welcome stuff still happen
96
96
  return false
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: net-yail
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.0
7
- date: 2008-06-28 00:00:00 -04:00
6
+ version: 1.0.1
7
+ date: 2008-07-01 00:00:00 -04:00
8
8
  summary: "Yet Another IRC Library: wrapper for IRC communications in Ruby."
9
9
  require_paths:
10
10
  - lib
@@ -29,12 +29,13 @@ post_install_message:
29
29
  authors:
30
30
  - Jeremy Echols
31
31
  files:
32
- - IRCBot.rb
33
32
  - lib/net/yail.rb
33
+ - CHANGELOG
34
34
  - lib/net/yail/magic_events.rb
35
35
  - lib/net/yail/default_events.rb
36
36
  - lib/net/yail/output_api.rb
37
37
  - lib/net/yail/eventmap.yml
38
+ - lib/net/yail/IRCBot.rb
38
39
  - README
39
40
  test_files: []
40
41
 
@@ -43,7 +44,7 @@ rdoc_options:
43
44
  - README
44
45
  extra_rdoc_files:
45
46
  - README
46
- - IRCBot.rb
47
+ - CHANGELOG
47
48
  executables: []
48
49
 
49
50
  extensions: []