Sha256: 2797726eae183917fd8251603812a1d5b387d5e1fee5561dff0ebaee586791c9

Contents?: true

Size: 437 Bytes

Versions: 3

Compression:

Stored size: 437 Bytes

Contents

module Appfuel
  module Handler
    class Action < Base
      class << self

        # In order to reduce the length of namespaces actions are not required
        # to be inside an Actions namespace, but, it is namespaced with in the
        # application container, so we adjust for that here.
        #
        # @return [String]
        def container_relative_key
          "actions.#{super}"
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
appfuel-0.2.3 lib/appfuel/handler/action.rb
appfuel-0.2.2.pre.alpha.pre.140 lib/appfuel/handler/action.rb
appfuel-0.2.0 lib/appfuel/handler/action.rb