Links
Categories
Plugins Tagged activerecord
-
ModelFormatter
Format data coming in and out of the model easily with these class methods.
format_column :sale_price, :as => :currency
Can use blocks, custom formatters, or even help out by contributing to the pluggable formatting code!
-
acts_as_rateable
Allows any ActiveRecord model to be rated/ranked
-
acts_as_ratable
An ActiveRecord mixin that provides rating capabilities to a given model. Useful for community-driven applications.
-
loads_from_amazon
An ActiveRecord mixin to allow a model object to be populated with the details of a product listed on amazon. Uses the Amazon/Ruby library.
-
acts_as_cached
A plugin which allows you to cache any Ruby object with memcached.
-
ActiveRecord::Base Without Table
Get the power of ActiveRecord models, including validation, without having a table in the database.
-
meantime_filter
This plugin introduces a new filter type to ActionController::Base: meantime filters. They are called at the time of the action call just after before filters. They allow to do things around the action by yielding when the action has to be performed. This enables the action to be executed within the block of any method.
-
acts_as_audited
Active Record extension that logs all revisions in an audits table, allowing changes to be reverted.
-
Association Extensions
Adds methods for candidates, complement, unrelated to associations.
Provides methods for getting/setting associations by id. -
Validation Reflection
Reflect on validations.
-
scope_out
Create custom finder methods on your model which accept all normal find arguments, but limit the scope of the query. Perfect for keeping your models DRY and decoupled.
-
ar-extensions
ActiveRecord::Extensions is a set of extensions for ActiveRecord
-
Flagger
Dynamic attribute-based methods for dealing with boolean attributes in ActiveRecord
-
AutoScope
Automatically create scoped access methods on your ActiveRecord models.
-
acts_as_comparable
an easy way to compare ActiveRecord models based on their attributes
-
acts_as_emailable
A small plugin which sets up an Email model and the associations with the User model, so users can store emails against each other.
-
AttrLocked
Adds the ability to prevent changes to model attributes - perfect for fixing usernames or making sure no-one tampers with your financial records.
-
QueryTrace
Adds a filtered stack trace to each logged query.
-
Acts as Decimal
Store decimals as integers in the database.
-
Acts as Static
Light weight transparent record cache
