Skip to Content Skip to Search

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

[R] name

Public class methods

Used for:

  • GET index

Source code GitHub
# File railties/lib/rails/generators/active_model.rb, line 38
def self.all(klass)
  "#{klass}.all"
end

Used for:

  • GET new

  • POST create

Source code GitHub
# File railties/lib/rails/generators/active_model.rb, line 56
def self.build(klass, params = nil)
  if params
    "#{klass}.new(#{params})"
  else
    "#{klass}.new"
  end
end

Used for:

  • GET show

  • GET edit

  • PATCH / PUT update

  • DELETE destroy

Source code GitHub
# File railties/lib/rails/generators/active_model.rb, line 48
def self.find(klass, params = nil)
  "#{klass}.find(#{params})"
end
Source code GitHub
# File railties/lib/rails/generators/active_model.rb, line 31
def initialize(name)
  @name = name
end

Public instance methods

Used for:

  • DELETE destroy

Source code GitHub
# File railties/lib/rails/generators/active_model.rb, line 89
def destroy
  "#{name}.destroy!"
end

Used for:

  • POST create

  • PATCH / PUT update

Source code GitHub
# File railties/lib/rails/generators/active_model.rb, line 82
def errors
  "#{name}.errors"
end

Used for:

  • POST create

Source code GitHub
# File railties/lib/rails/generators/active_model.rb, line 67
def save
  "#{name}.save"
end

Used for:

  • PATCH / PUT update

Source code GitHub
# File railties/lib/rails/generators/active_model.rb, line 74
def update(params = nil)
  "#{name}.update(#{params})"
end

Definition files