Recently Published Plugins
SeleniumRC Spec by Yuki Sonoda (yugui) in Testing
Rails plugin to integrate SeleniumRC with RSpec on Rails.
records_sequence by Aaron Tian (Aaron) in ActiveRecord, Toolkits, and Miscellaneous
== INSTALL == This plugin requires Rails 2.1+ currently. Install it by below command: ruby script/plugin install git://github.com/Aaron2Ti/records_sequence.git == USAGE == After installed, your ActiveRecord objects could mixin two methods "next/previous". So you could find next/previous object like below: class User < ActiveRecord::Base end foo = User.first bar = foo.next foo_neighbour = foo.previous # returns nil if foo has no previous neighbour #The sequence's sorted column is defined by the new option :sorted_by, # default is the 'id' column. foo = User.last pre_foo_sorted_by_id = foo.previous pre_foo_sorted_by_age = foo.previous(:sorted_by => 'age') #Also works fine with most other ActiveRecord's find options: foo = User.find 30 foo.next(:conditions => ['age < ?', 20]) foo.previous(:offset => 2) foo.next(:sorted_by => 'address', :order => 'name DESC, age') foo.previous( :sorted_by => 'age', :conditions => ['age < ?', 20], :order => 'name DESC, address', :offset => 2 )
javascript_auto_include by Jamie Dyer (kernowsoul) in HTML Helpers and Miscellaneous
This plugin automatically includes javascript files that mirror an applications view structure.
dectxn - Rails Declarative Transactions by Simon Horne (soulware) in ActiveRecord and Miscellaneous
dectxn is a Rails plugin that provides declarative transaction management.
Better Partials by jcnetdev in HTML Helpers, Utilities, and Miscellaneous
Wraps render :partial to make dealing with partials much easier. <%= partial "form", :f => f %> instead of <%= render :partial => "form", :locals => {:f => f} %>. Learn more: http://www.railsjedi.com/posts/22
acts as history by Uwe Kubosch (donv) in ActiveRecord
Adds functionality to keep historic versions of a model in the database.
Validates As EU Vat Number by Neil Wilson (NeilW) in ActiveRecord and Miscellaneous
Validates an attribute as conforming to the format of an VAT number in an EU country. The country code can either be in a separate attribute or as part of the attribute you are checking.
Advanced Validations by Peeyush Aggarwal (serious__sam) in ActiveRecord
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)
Simple Private Messages by Jon Gilbraith (professionalnerd) in ActiveRecord
Provides basic private messaging functionality for members of a particular model (typically users). It‘s not big on features but the idea is that it‘s very simple and light on resources. It‘s not bound to specific model names and plays nice with will_paginate. Also has a scaffold generator which will have you going in minutes.
stage by Andrew Stone (stonean) in Utilities
This generator takes a different approach than scaffold by DRYing up HTML code with use of two partials (form and data). It also uses the associated helper as a presentation object to minimize code usage in your view.
