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.

Methods
A
B
D
E
F
N
S
U
Attributes
[R] name
Class Public methods
all(klass)

GET index

    # File railties/lib/rails/generators/active_model.rb, line 34
34:       def self.all(klass)
35:         "#{klass}.all"
36:       end
build(klass, params=nil)

GET new POST create

    # File railties/lib/rails/generators/active_model.rb, line 48
48:       def self.build(klass, params=nil)
49:         if params
50:           "#{klass}.new(#{params})"
51:         else
52:           "#{klass}.new"
53:         end
54:       end
find(klass, params=nil)

GET show GET edit PUT update DELETE destroy

    # File railties/lib/rails/generators/active_model.rb, line 42
42:       def self.find(klass, params=nil)
43:         "#{klass}.find(#{params})"
44:       end
new(name)
    # File railties/lib/rails/generators/active_model.rb, line 29
29:       def initialize(name)
30:         @name = name
31:       end
Instance Public methods
destroy()

DELETE destroy

    # File railties/lib/rails/generators/active_model.rb, line 73
73:       def destroy
74:         "#{name}.destroy"
75:       end
errors()

POST create PUT update

    # File railties/lib/rails/generators/active_model.rb, line 68
68:       def errors
69:         "#{name}.errors"
70:       end
save()

POST create

    # File railties/lib/rails/generators/active_model.rb, line 57
57:       def save
58:         "#{name}.save"
59:       end
update_attributes(params=nil)

PUT update

    # File railties/lib/rails/generators/active_model.rb, line 62
62:       def update_attributes(params=nil)
63:         "#{name}.update_attributes(#{params})"
64:       end