RSpec Stories On Rails
Ruby on Rails | (0)
Using a story to drive your development tasks is a good idea, even when there is only 1 team member. Writing stories helps you stay focused on the requirements without getting side-tracked into something that isn't working toward the end goal of your app. There's always time for script.aculo.us later! Using RSpec stories also means you have tests to run against your code so you know that fixing something probably didn't break something else.
First thing you want to do is get the RSpec on Rails plugin installed, and generate the RSpec code.
$ ./script/plugin install git://github.com/dchelimsky/rspec.git
$ ./script/plugin install git://github.com/dchelimsky/rspec-rails.git
$ ./script/generate rspec
Stories ...