Flowdock
method

check_prefix_options

Importance_0
v3.2.1 - Show latest stable - 0 notes - Class: ActiveResource::Base
check_prefix_options(prefix_options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activeresource/lib/active_resource/base.rb, line 883
        def check_prefix_options(prefix_options)
          p_options = HashWithIndifferentAccess.new(prefix_options)
          prefix_parameters.each do |p|
            raise(MissingPrefixParam, "#{p} prefix_option is missing") if p_options[p].blank?
          end
        end
Register or log in to add new notes.