Module: GrowlCar

Extended by:
Configuration
Defined in:
lib/growl_car.rb,
lib/growl_car/error.rb,
lib/growl_car/client.rb,
lib/growl_car/request.rb,
lib/growl_car/version.rb,
lib/growl_car/configuration.rb,
lib/growl_car/growl_notification.rb

Defined Under Namespace

Modules: Configuration, Error, GrowlNotification, Request Classes: Client

Constant Summary collapse

VERSION =
"0.0.1"

Instance Attribute Summary

Attributes included from Configuration

#password, #username

Class Method Summary collapse

Methods included from Configuration

boxcar_url, configure, keys, reset!

Class Method Details

.clientObject



14
15
16
17
# File 'lib/growl_car.rb', line 14

def client
  create_client unless @client.value
  @client.value
end

.respond_to?(method) ⇒ Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/growl_car.rb', line 19

def respond_to?(method)
  return client.respond_to?(method)
end