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 Plugin generator that uses RSpec stubs instead of Test::Unit. Also sets up database connections for testing against an isolated database.
Description Rails gives us a generator to create plugins with ./script/generate plugin. It creates all the stub files, including some tests for you. What if you want to use RSpec instead of Test::Unit though?</p> <p>./script/generate rspec_plugin <br /> <br />Yep, it's super basic, it just does all the same stuff as the regular plugin generator does, except it creates RSpec stubs for you.</p> <p>There is one added bonus though, and that's that you can set up an individual database for your plugin.</p> <p>./script/generate rspec_plugin my_plugin --with-database <br /> <br />This will create a schema.rb file where you can create the schema for your plugin specs, a database.yml file to configure the database connection, and set up some helpful stuff in spec_helper.rb Nice for quickly getting a plugin going with tests isolated against its own database.</p> <p>The database stuff is based on code from Chapter 8 of Rails Plugins: Extending Rails Beyond the Core by James Adam. If you're writing a plugin, check it out, you'll definitely learn a few tricks.</p> <p>./script/plugin install svn://evang.eli.st/public/plugins/rspec_plugin
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