jacs 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -24,7 +24,7 @@ module ActionJabber
24
24
  end
25
25
  end
26
26
  class Server
27
- # Sets up the server. The @controller@ argument is expected to be a class, not an instance.
27
+ # Sets up the server. The +controller+ argument is expected to be a class, not an instance.
28
28
  def initialize(username, password, controller, debug = false)
29
29
  @jabber = Jabber::Simple.new(username, password)
30
30
  @controller = controller # Should be a class.
@@ -22,7 +22,7 @@ module ActiveJabber
22
22
  request_parts = []
23
23
  Base::Request.new(self, nil, request_parts).send(method, *args)
24
24
  end
25
- # Sends a request to the client, path should be formatted like "/users" and @opts@ may include a @:args@ (a string) and @:timeout@ (in seconds) keys.
25
+ # Sends a request to the client, path should be formatted like "/users" and +opts+ may include a +:args+ (a string) and +:timeout+ (in seconds) keys.
26
26
  def request(path, opts)
27
27
  hash = self.generate_hash
28
28
  message = hash + ':' + path.gsub(/\?$/, '')
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 1
9
- version: 0.4.1
8
+ - 2
9
+ version: 0.4.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Dirk Gadsden