class BitlbeeConfig::Accounts::Gtalk
Constants
- DEFAULT_GTALK_SERVER
Public Class Methods
new(options = {})
click to toggle source
Calls superclass method
BitlbeeConfig::Accounts::Jabber::new
# File lib/bitlbee_config/accounts/gtalk.rb, line 6 def initialize(options = {}) # unlike facebook, we don't give support password authentication here, only oauth super({ tag: "gtalk", nick_format: "%full_name", server: DEFAULT_GTALK_SERVER, oauth: "on", cleartext_password: "" }.merge(options)) end