net-irc 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +27 -0
- data/Rakefile +2 -1
- data/examples/client.rb +23 -0
- data/examples/lig.rb +306 -108
- data/examples/lingr.rb +333 -0
- data/examples/nig.rb +144 -0
- data/examples/tig.rb +153 -48
- data/examples/wig.rb +40 -15
- data/lib/net/irc.rb +95 -77
- data/spec/net-irc_spec.rb +385 -0
- data/spec/spec.opts +1 -0
- metadata +8 -3
data/spec/spec.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-irc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- cho45
|
@@ -9,7 +9,7 @@ autorequire: ""
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-02-06 00:00:00 +09:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -26,11 +26,16 @@ files:
|
|
26
26
|
- README
|
27
27
|
- ChangeLog
|
28
28
|
- Rakefile
|
29
|
+
- spec/net-irc_spec.rb
|
30
|
+
- spec/spec.opts
|
29
31
|
- lib/net
|
30
32
|
- lib/net/irc.rb
|
33
|
+
- examples/client.rb
|
34
|
+
- examples/lig.rb
|
35
|
+
- examples/lingr.rb
|
36
|
+
- examples/nig.rb
|
31
37
|
- examples/tig.rb
|
32
38
|
- examples/wig.rb
|
33
|
-
- examples/lig.rb
|
34
39
|
has_rdoc: true
|
35
40
|
homepage: http://lowreal.rubyforge.org
|
36
41
|
post_install_message:
|