Ruby

Ruby programming language

Testing Multiple Browsers with Selenium and Cucumber

Testing web applications can be a difficult task with the many complexities involved with current web technologies. At one time it was possible to test web applications without needing to rely on javascript at all. For this you could leverage java's htmlunit or even httpunit to write unit tests based on the source of a webpage. Javascript support in htmlunit was not the least bit usable on the web applications that I tested at my previous job, so it was completely off the table for the current project I'm responsible for testing.

Find Google Rank with Ruby

Have you ever wondered where your site ranks on google for a given search?

Try this ruby script out to find out (be nice with it!).
You'll need ruby installed of course. Also do a

gem install hpricot

since this requires the hpricot gem to be installed.

It will search up to 20 pages deep on google (I wouldn't recommended altering this since nobody is going to search more than 20 pages deep for your webpage).

Ubuntu 8.10 With Firewatir

Some kind Ruby Enthusiasts built a tool called Watir (Web Application Testing in Ruby) which basically allows you to programmatically control a web browser (Specifically Microsoft Internet Explorer). From a Software Quality Assurance standpoint this allows the developers to automate much of what is typically a manual process.