Sha256: e92b1a64ce1ce4d2f287bb9f0f20a51bd592e5ceb5fc411bf63892fd91df69cc

Contents?: true

Size: 1.73 KB

Versions: 5

Compression:

Stored size: 1.73 KB

Contents

module Rails
  module Generators
    # 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 ActiveModel
      attr_reader :name

      def initialize(name)
        @name = name
      end

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

      # GET show
      # GET edit
      # PUT update
      # DELETE destroy
      def self.find(klass, params=nil)
        "#{klass}.find(#{params})"
      end

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

      # POST create
      def save
        "#{name}.save"
      end

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

      # POST create
      # PUT update
      def errors
        "#{name}.errors"
      end

      # DELETE destroy
      def destroy
        "#{name}.destroy"
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
railties-3.0.0.rc lib/rails/generators/active_model.rb
railties-3.0.0.beta4 lib/rails/generators/active_model.rb
railties-3.0.0.beta3 lib/rails/generators/active_model.rb
railties-3.0.0.beta2 lib/rails/generators/active_model.rb
railties-3.0.0.beta lib/rails/generators/active_model.rb