class Seahorse::Client::Base

def after_initialize(plugins)

Gives each plugin the opportunity to modify this client.
def after_initialize(plugins)
  plugins.reverse.each do |plugin|
    plugin.after_initialize(self) if plugin.respond_to?(:after_initialize)
  end
end