Is your plugin hosted on GitHub? Make sure to press the "fetch" button next to the repository field to fetch your plugin's info from GitHub rather than typing it all in.
Repository
Name
Home Page
Short description Fixtures exporter for named fixtures in rails 2.x
Description <h3>Description</h3> This plugins can export/display fixtures with belongs_to/has_and_belongs_to_many relations using fixtures names instead of foreign key id. <br /> <h3>Examples</h3> With the following Message class: <pre> <code> class Message < ActiveRecord::Base belongs_to :sender belongs_to :recipient has_and_belongs_to_many :medias end </code> </pre> You can dump your database content with a name for each belongs_to / has_and_belongs_to_many relations : <pre> <code> $> rake db:fixtures:display_named MODELS=Message --- sent_message_751373555: body: qu'en penses-tu ? sender: fabien type: SentMessage subject: de bien belles fraises draft_message_893975074: recipient: etienne sender: fabien type: DraftMessage subject: "RE : invitation jacuzzi" sent_message_751373556: body: le meilleur jus d'oranges du monde! recipient: etienne sender: fabien type: SentMessage subject: tropicana 2 medias: strawberry_sunset received_message_507475146: body: everything's ok recipient: fabien sender: etienne type: ReceivedMessage subject: test </code> </pre> If you already have fixtures, you can refresh them : <pre> <code> $> cat test/fixtures/users.yml etienne: email: etienne@segonzac.info fabien: email: fabien@jakimowicz.com $> rake db:fixtures:display_named MODELS=User --- fabien: birthdate: 02/12/1981 lastname: jakimowicz firstname: fabien contacts: etienne, user_987440063 email: fabien@jakimowicz.com user_987440063: email: i_forget_it@demo.com etienne: email: etienne@segonzac.info lastname : segonzac firstname : etienne </code> </pre> <br /> <h3>Usage</h3> 2 rake tasks are availables : rake db:fixtures:display_named # display fixtures for given MODELS rake db:fixtures:export_named # export named fixtures from given MODELS MODELS is a space separated string of model class names <br /> <h3>Installation</h3> <pre> <code> $> ./script/plugin install git://github.com/jakimowicz/named-fixtures-exporter.git </code> </pre>
Description format RDoc MarkDown Textile
License Ruby's Rails' (MIT) GPL LGPL BSD Apache Artistic PublicDomain BSD-type Free-Trial Free-but-Restricted OpenSource Proprietary Shareware Source-available-proprietary Commercial
Category Assets Controllers Internationalization Misc. Enhancements Model Rails Engines Searching and Queries Security Statistics and Logs Testing View Extensions