Module: ZerigoDNS::Resource

Included in:
Host, HostTemplate, Zone, ZoneTemplate
Defined in:
lib/zerigodns/resource.rb

Overview

A lightweight resource class that will do much of the work of ActiveResource without the big dependencies.

Defined Under Namespace

Modules: Attributes, ClassMethods, Naming, Rest

Class Method Summary collapse

Class Method Details

.included(includer) ⇒ Object



32
33
34
35
36
37
# File 'lib/zerigodns/resource.rb', line 32

def self.included includer
  includer.send :include, Attributes
  includer.send :include, Rest
  includer.send :include, Naming
  includer.send :extend, ClassMethods
end