Module: Mitake::API Private
- Defined in:
- lib/mitake/api.rb,
lib/mitake/api/get.rb,
lib/mitake/api/base.rb,
lib/mitake/api/post.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Provide API Interface
Defined Under Namespace
Modules: ClassMethods Classes: Base, Error, Get, Post
Class Method Summary collapse
- .included(base) ⇒ Object private
Class Method Details
.included(base) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
17 18 19 20 21 22 23 |
# File 'lib/mitake/api.rb', line 17 def self.included(base) base.class_eval do @method = 'Get' extend ClassMethods end end |