123456789_123456789_123456789_123456789_123456789_

Class: Rails::Generators::ActiveModel

Relationships & Source Files
Inherits: Object
Defined in: railties/lib/rails/generators/active_model.rb

Overview

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.

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(name) ⇒ ActiveModel

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 29

def initialize(name)
  @name = name
end

Class Method Details

.all(klass)

GET index

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 34

def self.all(klass)
  "#{klass}.all"
end

.build(klass, params = nil)

GET new POST create

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 48

def self.build(klass, params=nil)
  if params
    "#{klass}.new(#{params})"
  else
    "#{klass}.new"
  end
end

.find(klass, params = nil)

GET show GET edit PATCH/PUT update DELETE destroy

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 42

def self.find(klass, params=nil)
  "#{klass}.find(#{params})"
end

Instance Attribute Details

#name (readonly)

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 27

attr_reader :name

Instance Method Details

#destroy

DELETE destroy

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 73

def destroy
  "#{name}.destroy"
end

#errors

POST create PATCH/PUT update

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 68

def errors
  "#{name}.errors"
end

#save

POST create

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 57

def save
  "#{name}.save"
end

#update(params = nil)

PATCH/PUT update

[ GitHub ]

  
# File 'railties/lib/rails/generators/active_model.rb', line 62

def update(params=nil)
  "#{name}.update(#{params})"
end