Sign in or 

| Version | User | Scope of changes |
|---|---|---|
| Feb 19 2008, 4:02 PM EST (current) | rupakg | 28 words added |
| Feb 19 2008, 3:38 PM EST | rupakg | 2 words added |
| Name | Function | Notes |
| Acts As Taggable Plugin | Easy way to add tagging capabilties to AR objects and enables searching capabilities for objects. | Need a table named "tags" and a model named "tag". |
| Acts As Authenticated Plugin | Adds authentication to an application. | Creates an User model, an Account controller, login and registration views along with migrations, unit and functional test scripts. |
| SafetyNet Plugin | If the development or production database name is same as the test database, rake will never wipe your database again. | Install: ruby script/plugin install svn://rubyforge.org/var/svn/apptrain/trunk/vendor/plugins/safety_net |
| Comatose Plugin | Comatose is a micro CMS, implemented as a Rails plugin, that is designed to be easy to embed and extend. http://code.google.com/p/comatose-plugin/ http://groups.google.com/group/comatose-plugin | Installation: From your root application folder, run: ./script/plugin install http://comatose-plugin.googlecode.com/svn/trunk/comatose ./script/generate comatose_migration rake db:migrate Now add this to the bottom of your config/routes.rb file: map.comatose_admin map.comatose_root '' |
| Substruct Engine | The first and most robust Ruby on Rails open source e-commerce project. |
|
| Simple CMS | Simple CMS is a very easy to use and pretty advanced CMS plugin. It takes only one line of code in any views file. Demo. |
| Name | Function | Notes |
| Composite Primary Keys | Ruby on Rails does not support composite primary keys. This free software is an extension to the database layer of Rails ActiveRecords – to support composite primary keys. | Install: gem install composite_primary_keys |
| Gems on Rails | This Rails plugin allows you to freeze or link a gem into your rails source. | Install: gem install gemsonrails |
| Map By Method | Enables quick-to-type array manipulations. It works with ActiveRecord associations as well. | Install: gem install map_by_method |
| Cheat | Enables cheatsheets at the command-line. | Install: gem install cheat Run cheat rails to find the full list. Run cheat cheat for help on cheat. |
| Name | Function | Notes |
| New Gem Generator | newgem - an executable to create your own gems | Install: gem install newgem |