Sha256: a895c7eaa92afd3d4cd31c12829eaeb0256c9b129dc67bd68a823979b5a65468

Contents?: true

Size: 481 Bytes

Versions: 1

Compression:

Stored size: 481 Bytes

Contents

require "xpose/version"
require "active_support/all"

module Xpose
  class UnknownOptionsError < StandardError ; end
  class MissingOptionError < StandardError ; end
  class UnknownDecoratorError < StandardError ; end

  autoload :Configuration, 'xpose/configuration.rb'
  autoload :Exposed, 'xpose/exposed.rb'
  autoload :Decorated, 'xpose/decorated.rb'
  autoload :Controller, 'xpose/controller.rb'

  ActiveSupport.on_load :action_controller do
    include Controller
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xpose-0.1.6 lib/xpose.rb