module ClientDataAdapter

For unify data formats to transfer to clients.

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

@author shadow <github.com/jinghua000>

Constants

ADAPTER
ADAPTER_WRAPPER
VERSION

Public Class Methods

included(base) click to toggle source
# File lib/client-data-adapter.rb, line 12
def self.included(base)
  base.include(ClientDataAdapter::InstanceMethods)
  base.extend(ClientDataAdapter::ClassMethods)
end