module ResourceSearchApi

Public Class Methods

included(klass) click to toggle source
# File lib/swapir/resource_search_api.rb, line 6
def self.included(klass)
  # 'included' callback adds the ClassMethods module methods
  # as class methods to the calling class
  klass.extend(ClassMethods)
end