Because Nokogiri needs to be compiled and dynamically linked against both libxml2 and libxslt, it has gained a reputation for...
When you just went through a long debug-fest and infested your code with dozens of debug messages, it can...
Have you guys ever done the math on that? You asked or allowed for 24000 interruptions from literally every human...
Note that this card is very old. You might want to use ActiveType for your auto-coerced virtual attributes instead...
Don't insert table rows in a Rails database migration. This will break tests that expect that database to be...
E.g. when you're using a tagging gem, you have seen virtual attributes that get and set a string array...
In order to go back one page in your Cucumber tests, you can use the following step definition for Capybara...
To change a commit message of the most recent (unpushed) commit, you can simply use git commit --amend -m 'new...
Plugins (and gems) are typically tested using a complete sample rails application that lives in the spec folder of the...
This step tests whether a given select option comes preselected in the HTML. There is another step to test that...
You should never transmit sensitive data without encryption. Being logged in somewhere constitutes transmitting sensitive data. For Pivotal Tracker:
This is non-trivial because you need to fake event objects and require different code for different browsers. Luckily, there...
When you use will_paginage to paginate a scope, and you want to obtain the total number of records matched...
Fixes all Flash elements on a page so that they heed DOM stacking order
There is a problem with AJAX response handling for Rails 3 remote links and forms in Internet Explorer. This problem...
For clarity and traceability, your commit messages should include the ID and title of the Pivotal Tracker story you're...
To only run the next two migrations: rake db:migrate STEP=2 To revert the previous two migrations:
The following initializer provides an :alias => "my_route_name" option to restful routes in your route.rb. This simply makes the...
If you need to revert only parts of one or several commits the following workflow can help:
git diff commit_hash -- path/to/file Provide any commit hashes or branch names like "master" for commit_hash.
To install webmock 1.5.0: sudo gem install webmock --version "=1.5.0" or sudo gem install webmock -v "=1.5.0"
As a user of Bundler you have spent significant time looking at this message: Fetching source index for http://rubygems.org...
Regular spaces and non-breaking spaces are hard to distinguish for a human. Instead of using the HTML entity...
This is a bash script for those of you who need to install all gems for all projects (e.g. to...