Plugin Search
-
QueryTrace
-
Adds a filtered stack trace to each logged query.
Rating: 4/5 (10 votes)
Added on 17 May 2006
-
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!
Rating: 5/5 (13 votes)
Added on 14 Jun 2006
-
acts_as_rateable
-
Allows any ActiveRecord model to be rated/ranked
Rating: 4/5 (390 votes)
Added on 23 Jun 2006
-
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.
Rating: 4/5 (8 votes)
Added on 3 Jul 2006
-
acts_as_ratable
-
An ActiveRecord mixin that provides rating capabilities to a given model. Useful for community-driven applications.
Rating: 3/5 (139 votes)
Added on 20 Jul 2006
-
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.
Rating: 4/5 (1 vote)
Added on 20 Jul 2006
-
has_many_polymorphs
-
Makes using ActiveRecord polymorphic associations dead easy. Supports self-references and double-side associations.
Rating: 4/5 (15 votes)
Added on 26 Jul 2006
-
Validation Reflection
-
Reflect on validations.
Rating: 5/5 (35 votes)
Added on 29 Jul 2006
-
acts_as_audited
-
Active Record extension that logs all revisions in an audits table, allowing changes to be reverted.
Rating: 5/5 (16 votes)
Added on 1 Aug 2006
-
Association Extensions
-
Adds methods for candidates, complement, unrelated to associations.
Provides methods for getting/setting associations by id.
Rating: 0/5 (0 votes)
Added on 7 Sep 2006
-
acts_as_cached
-
A plugin which allows you to cache any Ruby object with memcached.
Rating: 5/5 (7 votes)
Added on 14 Sep 2006
-
ActiveRecord::Base Without Table
-
Get the power of ActiveRecord models, including validation, without having a table in the database.
Rating: 4/5 (35 votes)
Added on 4 Nov 2006
-
ODBC Adapter for Rails / ActiveRecord
-
A data-adapter for ODBC- and JDBC-accessible databases that provides a single point of data access focus to ActiveRecord.
Rating: 3/5 (2 votes)
Added on 11 Jan 2007
-
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.
Rating: 5/5 (13 votes)
Added on 16 Jan 2007
-
ar-extensions
-
ActiveRecord::Extensions is a set of extensions for ActiveRecord
Rating: 5/5 (11 votes)
Added on 14 Feb 2007
-
Flagger
-
Dynamic attribute-based methods for dealing with boolean attributes in ActiveRecord
Rating: 4/5 (3 votes)
Added on 9 Mar 2007
-
AutoScope
-
Automatically create scoped access methods on your ActiveRecord models.
Rating: 3/5 (3 votes)
Added on 28 Mar 2007
-
Acts as Decimal
-
Store decimals as integers in the database.
Rating: 4/5 (2 votes)
Added on 29 Mar 2007
-
acts_as_comparable
-
an easy way to compare ActiveRecord models based on their attributes
Rating: 3/5 (4 votes)
Added on 21 Apr 2007
-
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.
Rating: 5/5 (41 votes)
Added on 7 Jun 2007
-
AttrLocked
-
Adds the ability to prevent changes to model attributes - perfect for fixing usernames or making sure no-one tampers with your financial records.
Rating: 5/5 (1 vote)
Added on 8 Jun 2007
-
Nested has_many_through
-
Makes it possible to define has_many :through associations that
go through other has_many :through associations, allowing them to span any number of tables.
Rating: 4/5 (18 votes)
Added on 10 Jun 2007
-
Acts as Static
-
Light weight transparent record cache
Rating: 0/5 (0 votes)
Added on 21 Jun 2007
-
Validates Constancy
-
Allows you to prevent particular database fields from being changed after a record is created. A validation error occurs on updates if an attribute of a model object is different from its value in the database.
Rating: 5/5 (3 votes)
Added on 27 Jun 2007
-
acts_as_replica
-
Offline data gathering and bi-directional synchronization between many remote Rails-based stand-alone client apps and a central Rails server.
Rating: 5/5 (7 votes)
Added on 8 Jul 2007
-
Jsonifier
-
Upgrades ActiveRecord#to_json with options similar to ActiveRecord#to_xml. ActiveRecord#to_json doesn't need to be useless anymore!
Rating: 4/5 (5 votes)
Added on 10 Jul 2007
-
Acts as Feeder
-
Acts as feeder is a plugin that generates a feed aggregator in Ruby on Rails. This plugin is inspired by Craig Ambrose FeedFetcher. Thanks Craig.
Rating: 4/5 (7 votes)
Added on 24 Jul 2007
-
super_transaction
-
SuperTransaction allows you to save and destroy objects just as you normally would, but under the
safety of a database transaction. It extends upon the built in Rails transaction method to cut
duplication of what I find myself repeating all over when using transactions.
Rating: 0/5 (0 votes)
Added on 29 Jul 2007
-
active_mocks
-
based on flexmock, makes mocking active
record objects quick and easy. Supports
easy mocking of first level associations.
Rating: 0/5 (0 votes)
Added on 29 Jul 2007
-
Templated Attribute
-
Allows you to declare that certain attributes in your model are "templated." A templated attribute has a helpful initial value�kind of like a default value�except that these aren't valid data or saved in the database. They're suggestions to the user about the expected formatting or content of a field.
Rating: 0/5 (0 votes)
Added on 30 Jul 2007
-
StripAttributes
-
Automatically strips all ActiveRecord model attributes of leading and trailing whitespace before validation. If the attribute is blank, it strips the value to nil.
Rating: 5/5 (3 votes)
Added on 23 Sep 2007
-
ActiveRecordChanged
-
adds .changed? and .saved? methods to all records. Now you can avoid the db overhead of saving objects back to the database if the object hasn't changed via "person.save! if person.changed?". (hmm... maybe AR should automatically do that... maybe I'll add that later).
Rating: 5/5 (1 vote)
Added on 2 Oct 2007
-
Checkbox Select
-
Checkbox Form helper for has_and_belongs_to_many relationships.
Rating: 3/5 (4 votes)
Added on 5 Nov 2007
-
ActsAsResource
-
Acts As Resource combines ActiveRecord and ActiveResource features in *one* class.
Rating: 2/5 (8 votes)
Added on 28 Nov 2007
-
valid_attributes
-
This plugin provides the ActiveRecord validations with individual attribute.
Rating: 4/5 (1 vote)
Added on 26 Jan 2008
-
db_column_with_spaces
-
A simple plugin that enables ActiveRecord's accessor methods and dynamic finders to work with legacy database tables that have column labels containing spaces.
Rating: 5/5 (1 vote)
Added on 5 Mar 2008
-
Silent Postgres
-
Silences postgresql adapter internal debugging messages
Rating: 2/5 (2 votes)
Added on 14 Mar 2008
-
Advanced Validations
-
this plugin is intented to patch the problem of validations when done for scope.
see Rails Trac ticket 8774 (http://dev.rubyonrails.org/ticket/8774)
Rating: 0/5 (0 votes)
Added on 26 Mar 2008
Add a plugin
Search Plugins
Plugins by Category
Sponsors
Have a comment?