class Rails::Generators::ActiveModel
ActiveModel is a class to be implemented by each ORM to allow Rails to generate customized controller code.
The API has the same methods as ActiveRecord, but each method returns a string that matches the ORM API.
For example:
ActiveRecord::Generators::ActiveModel.find(Foo, "params[:id]") # => "Foo.find(params[:id])" DataMapper::Generators::ActiveModel.find(Foo, "params[:id]") # => "Foo.get(params[:id])"
On initialization, the ActiveModel accepts the instance name that will receive the calls:
builder = ActiveRecord::Generators::ActiveModel.new "@foo" builder.save # => "@foo.save"
The only exception in ActiveModel for ActiveRecord is the use of self.build instead of self.new.
Attributes
name[R]
Public Class Methods
# File railties/lib/rails/generators/active_model.rb, line 36 def self.all(klass) "#{klass}.all" end
GET index
# File railties/lib/rails/generators/active_model.rb, line 50 def self.build(klass, params = nil) if params "#{klass}.new(#{params})" else "#{klass}.new" end end
GET new POST create
# File railties/lib/rails/generators/active_model.rb, line 44 def self.find(klass, params = nil) "#{klass}.find(#{params})" end
GET show GET edit PATCH/PUT update DELETE destroy
# File railties/lib/rails/generators/active_model.rb, line 31 def initialize(name) @name = name end
Public Instance Methods
# File railties/lib/rails/generators/active_model.rb, line 75 def destroy "#{name}.destroy" end
DELETE destroy
# File railties/lib/rails/generators/active_model.rb, line 70 def errors "#{name}.errors" end
POST create PATCH/PUT update
# File railties/lib/rails/generators/active_model.rb, line 59 def save "#{name}.save" end
POST create
# File railties/lib/rails/generators/active_model.rb, line 64 def update(params = nil) "#{name}.update(#{params})" end
PATCH/PUT update
© 2004–2019 David Heinemeier Hansson
Licensed under the MIT License.