irc-socket 0.9.3 → 0.9.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.
Files changed (3) hide show
  1. data/Rakefile +1 -6
  2. data/lib/irc-socket.rb +1 -1
  3. metadata +3 -3
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require "spec/rake/spectask"
5
5
  require "rake/rdoctask"
6
6
 
7
7
  NAME = 'irc-socket'
8
- VERSION = '0.9.3'
8
+ VERSION = '0.9.4'
9
9
  CLEAN.include ["*.gem", "rdoc"]
10
10
 
11
11
  RDOC_OPTS = [
@@ -49,10 +49,5 @@ task :version do
49
49
  puts VERSION
50
50
  end
51
51
 
52
- desc "Upload rdoc to injekt.net"
53
- task :upload => [:clean, :rdoc] do
54
- sh("scp -r rdoc/* injekt@injekt.net:/var/www/injekt.net/rdoc/irc-socket")
55
- end
56
-
57
52
  task :default => [:spec]
58
53
 
@@ -161,7 +161,7 @@ class IRCSocket
161
161
 
162
162
  # Send JOIN command - Join a channel with given password
163
163
  def join(channel, password=nil)
164
- write("JOIN #{channel}")
164
+ write_optional("JOIN #{channel}", password)
165
165
  end
166
166
 
167
167
  # Send PART command
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 3
9
- version: 0.9.3
8
+ - 4
9
+ version: 0.9.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Lee 'injekt' Jarvis
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-26 00:00:00 +01:00
17
+ date: 2010-05-09 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency