class MyExtension

Extension namespace

def after_configuration

def after_configuration
  # Do something
end

def initialize(app, options_hash={}, &block)

def initialize(app, options_hash={}, &block)
  # Call super to build options from the options_hash
  super
  # Require libraries only when activated
  # require 'necessary/library'
  # set up your extension
  # puts options.my_option
end