Sha256: a724742f6fbb923cd6c2123086d998511652a1555f926a7e63d8c2ef7681bc4f
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
# frozen_string_literal: true require 'active_support' module Azeroth # @api public # @author Darthjee # # Concern for building controller methods for the routes # # @example (see Resourceable::ClassMethods#resource_for) # # @see Resourceable::ClassMethods module Resourceable extend ActiveSupport::Concern included do rescue_from ActiveRecord::RecordNotFound, with: :not_found end autoload :Builder, 'azeroth/resourceable/builder' autoload :ClassMethods, 'azeroth/resourceable/class_methods' class << self # @method self.resource_for(name, **options) # @api public # # @param name [String, Symbol] Name of the resource # @param options [Hash] resource building options # @option options only [Array<Symbol,String>] List of # actions to be built # @option options except [Array<Symbol,String>] List of # actions to not to be built # @option options decorator [Azeroth::Decorator,TrueClass,FalseClass] # Decorator class or flag allowing/disallowing decorators # @option options before_save [Symbol,Proc] method/block # to be ran on the controller before saving the resource # # @return [Array<MethodDefinition>] list of methods created # # @see Options::DEFAULT_OPTIONS end private # @api private # @private # # returns 404 as HTTP status # # @return [TrueClass] def not_found head :not_found end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azeroth-0.7.0 | lib/azeroth/resourceable.rb |