Module: ClientDataAdapter

Defined in:
lib/client-data-adapter.rb,
lib/client-data-adapter/util.rb,
lib/client-data-adapter/config.rb,
lib/client-data-adapter/version.rb,
lib/client-data-adapter/wrapper.rb,
lib/client-data-adapter/class_methods.rb,
lib/client-data-adapter/instance_methods.rb

Overview

For unify data formats to transfer to clients.

Homepage github.com/jinghua000/client-data-adapter

Author:

Defined Under Namespace

Modules: ClassMethods, InstanceMethods, Util Classes: Wrapper

Constant Summary collapse

ADAPTER_WRAPPER =
:AdapterWrapper
ADAPTER =
:adapter
VERSION =
'0.1.3'.freeze

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



12
13
14
15
# File 'lib/client-data-adapter.rb', line 12

def self.included(base)
  base.include(ClientDataAdapter::InstanceMethods)
  base.extend(ClientDataAdapter::ClassMethods)
end