Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 750 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 750 Bytes

Apiable

Status

Code Climate Test Coverage

Description

Features

Usage

Basic Usage

class User
  include Apiable::Object

  #
  # Any attribute (from the ORM) or method
  # can be declared to be listed in this simplified
  # version.
  #
  outgoing :name
  outgoing :email
  outgoing :level
end
@user = User.last
@user.external
# { name: 'John Doe', email: '[email protected]', level: :senior }

Contributing

License

See LICENSE file.