One of the great things about cucumber is it makes it easier to work with non-technical people. You can even get them to write cucumber test for you, even non-techies can deal with plain text files.
So you’ve written your user stories and acceptance tests as a team and converted them into cucumber features and scenarios. [...]
Published in Code
Custom html formatter for cucumber
Merb 1.0 Install Error:merb-core requires RubyGems version >= 1.3.0
When I tried to gem install Merb 1.0 I got this error
ERROR: Error installing merb:
merb-core requires RubyGems version >= 1.3.0
I tried to do a gem system update to the newest version of RubyGems (1.3.1) which failed.
$ sudo gem update –system
Updating RubyGems
Updating rubygems-update
Successfully installed rubygems-update-1.3.1
ERROR: While executing gem … (NameError)
[...]
‘rake notes’ for Rails 1.2.6 with RSpec
I have been doing a bit of work with Rails 1.2.6 recently and I am missing one feature that I use regularly in Rails 2.1 and that is rake notes.
I use # TODO comments as todo list items within my code and then call rake notes to review them.
I find it really useful for [...]