Class: Dynamo::Model::Base
- Inherits:
-
Object
- Object
- Dynamo::Model::Base
- Defined in:
- lib/dynamo/model/base.rb
Instance Method Summary collapse
- #build(params = {}) ⇒ Object
- #create(params = {}) ⇒ Object
-
#initialize(params = {}) ⇒ Base
constructor
A new instance of Base.
- #save ⇒ Object
- #update_column(attribute, value) ⇒ Object
- #update_columns(params = {}) ⇒ Object
Constructor Details
#initialize(params = {}) ⇒ Base
Returns a new instance of Base.
4 5 |
# File 'lib/dynamo/model/base.rb', line 4 def initialize(params = {}) end |
Instance Method Details
#build(params = {}) ⇒ Object
13 14 |
# File 'lib/dynamo/model/base.rb', line 13 def build(params = {}) end |
#create(params = {}) ⇒ Object
10 11 |
# File 'lib/dynamo/model/base.rb', line 10 def create(params = {}) end |
#save ⇒ Object
7 8 |
# File 'lib/dynamo/model/base.rb', line 7 def save end |
#update_column(attribute, value) ⇒ Object
16 17 |
# File 'lib/dynamo/model/base.rb', line 16 def update_column(attribute, value) end |
#update_columns(params = {}) ⇒ Object
19 20 |
# File 'lib/dynamo/model/base.rb', line 19 def update_columns(params = {}) end |