Sha256: 3ffe7e50073c45c0ab28b5d63a77c77bdf31c2293603a6c82527f1b0828e57ee

Contents?: true

Size: 1.42 KB

Versions: 3

Compression:

Stored size: 1.42 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

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

    # => Exceptions
    # => https://github.com/thoughtbot/paperclip/blob/master/lib/paperclip/errors.rb
    class Error < StandardError; end

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

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

3 entries across 3 versions & 1 rubygems

Version Path
exception_handler-0.7.6.0 lib/exception_handler.rb
exception_handler-0.7.5.15 lib/exception_handler.rb
exception_handler-0.7.5 lib/exception_handler.rb