Class: RubyVibe::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby_vibe/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



15
16
17
18
19
# File 'lib/ruby_vibe/configuration.rb', line 15

def initialize
  @auth_token    = nil
  @sender_name   = nil
  @sender_avatar = 'http://avatar.example.com'
end

Instance Attribute Details

#auth_tokenObject

Returns the value of attribute auth_token.



13
14
15
# File 'lib/ruby_vibe/configuration.rb', line 13

def auth_token
  @auth_token
end

#sender_avatarObject

Returns the value of attribute sender_avatar.



13
14
15
# File 'lib/ruby_vibe/configuration.rb', line 13

def sender_avatar
  @sender_avatar
end

#sender_nameObject

Returns the value of attribute sender_name.



13
14
15
# File 'lib/ruby_vibe/configuration.rb', line 13

def sender_name
  @sender_name
end