Sha256: a5218eb2c07b7e9c61825d307fba36c5e124d0764925eab9d28339d06c954662

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

#########################################################
#########################################################

module ExceptionHandler

  # => Table Prefix
  # => Keeps Rails Engine from generating all table prefixes with the engines name
  # => http://stackoverflow.com/questions/19435214/rails-mountable-engine-with-isolate-namespace-but-without-prefixed-namespace-on
  def self.table_name_prefix
    # => No prefix
  end

  # => Config
  # => Invoke instance of config (ExceptionHandler.config)
  mattr_accessor :config

end

#########################################################
#########################################################

# => Libs
# => http://stackoverflow.com/a/4528011/1143732
# => http://stackoverflow.com/a/21693468/1143732
# => https://github.com/jekyll/jekyll/blob/master/lib/jekyll.rb#L8
Dir.glob(File.join(File.dirname(__FILE__), 'exception_handler', '**/*.rb'), &method(:require))

# => External Dependencies
require 'responders'

#########################################################
#########################################################

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
exception_handler-0.7.0 lib/exception_handler.rb