Links
Categories
Category: Model
-
Checkbox Set Helper
Provides a helper class property for using checkboxes for selecting multiple items (for instance, children in a @has_many@ relationship).
-
Chinese regions
provides all chinese regions, cities and districts
-
Class table inheritance
Class table inheritance for ActiveRecord
-
class_associations
Allows you to express relationships at the class level between a model and individual records, such Vehicle.states.
-
ColumnComments
The ColumnComments plugin makes the necessary modifications to ActiveRecord to allow for an optional :comment in your table migrations.
-
Comic Curse
Adds 'comic_curse' method to any String object that replaces curse words that are defined in a yml file with '%$#@!' or whatever you want.
-
Comma
Comma is a small CSV (ie. comma separated values) generation extension for Ruby objects, that lets you seamlessly define a CSV output format via a small DSL
-
Comma Parser
Allows users to enter commas in forms for ActiveRecord integer fields.
-
Completeness-fu
Simple dsl for defining how to calculate how complete a model instance is (similar to LinkedIn profile completeness)
-
Configurator
Quickly add key/value options to any model
-
ContentRepository
A simple content repository plugin for Ruby on Rails
-
convertible to csv
Convertible to csv allows you to specify that an ActiveRecord model should respond to a to_csv message.
eg:
class Customer < ActiveRecord::Base
acts_as_convertible_to_csv :header => true,
:fields => %w(id firstname lastname email_address)
end -
Correct-format
Rails Plugin to correctly format user input
-
count_from_query
Easily convert finder queries into count queries
-
Custom Error Message
Active Record validation enhancement. Gives you the option to not have your custom validation error message prefixed with the attribute name.
-
Custom XML Serialization
Better ActiveRecord XML serialization
-
custom_callbacks
Helps create additional callbacks in ActiveRecord models.
-
custom_field_error
A plugin that allows you to set custom HTML for when your forms fail validation.
-
custom_timestamps
Use different columns then created_at and updated_at for timestamps
-
Dashed DOM_ID
Adds a method to your model to output a DOM ID suitable for identifying items in your views for AJAX and effects.
