You’re a business, calling a business, about conducting business. Don’t be surprised when money comes up.
When a Cucumber feature leaves your page through an external Link, Webrat has problems like "Could not find field: "E...
This may be awkward to set up, but will work once you're done. Fun facts:
Some browsers render PNG images with color profiles and other shenanigans, some don't. The cleanest way to have consistent...
Most of these will not work in newer projects because these use the Capybara/Rack::Test combo in lieu of Webrat...
Until May 2011 our gems have been created with Jeweler, which is a helper library to package code into a...
With defaults, RCov doesn't work the way you how you would like it to. To create a nice test...
We built cucumber_spinner to have a progress bar for Cucumber features, which also outputs failing scenarios as soon as...
To test concurrent code, you will need to run multiple threads. Unfortunately, when you use blocking system calls (e.g. locks...
For arrays of objects, uniq does not work as expected, since it uses strict equality. So [[1], [1]].uniq() == [[1...
Install gem and plugin sudo gem install parallel script/plugin install git://github.com/grosser/parallel_tests.git Adapt config/database.yml test: database: xxx_test<%= ENV...
To parse XML-documents, I recommend the gem nokogiri. A few hints: xml = Nokogiri::XML(" foo bar ") parses an xml...
See the lemonade descriptions. Unfortunately, the gem has a few problems: it does not work with Sass2...
If your shell seems frozen You probably pressed Ctrl-S which stops the buffer. Try Ctrl-Q to resume.
This is about converting Haml to ERB and not the other way round which you probably want! This process can...
When you need to patch an existing gem, one way is to "vendor" the gem by copying it into the...
script/cucumber features/feature_name.feature Or, if you don't care about speed, you can use rake: rake features FEATURE=features/feature_name.feature
This can happen during development when classes without automatic reloading are pointing to classes with automatic reloading. E.g. some class...
This note shows how to merge an ugly feature branch with multiple dirty WIP commits back into the master as...
Append this to your ~/.bashrc: export PS1='\[\033[01;32m\]\h\[\033[01;34m\] \w\[\033[31m\]$(__git_ps1 "(%s...
Basic configuration Please keep this config simple. It should be a starting point for new developers learning Git. [user]
You are getting when connecting via SSH or deploying with Capistrano (which uses SSH): Too many authentication failures for username...
I was setting up a Subversion repository one year ago. Of course, I also wanted to have regular backups of...
PUT means update the resource with this entity, which tends means "overwrite". Now think for a moment about how that...