Feeds:
Posts
Comments

Archive for the ‘Ruby’ Category

WATIR

WATIR, pronounced “Water”, is an acronym standing for “Web Application Testing in Ruby”. Watir is a toolkit used to automate browser-based tests during web application development. This automated test tool uses the Ruby scripting language to drive the Internet Explorer web browser, and is available as a Ruby Gem.
Examples
The google example
# Here we see a [...]

Read Full Post »

Web Service: Web services work on top of HTTP: they generally involve sending an HTTP request to a certain URL (possibly including an XML document), and getting a response in the form of another XML document. Web service implementations can be broken down into two categories: servers and clients.

Most web services are based on one [...]

Read Full Post »

Ruby String Functions

“i got what i want”.count “i” #=> 2
“i got what i want”.delete “i” #=> ” got what want”
“hello”.gsub(/[aeiou]/, ‘*’) #=> “h*ll*”
“hello”.sub(/[aeiou]/, ‘*’) [...]

Read Full Post »

Learn Ruby Language faster

Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward
The language was created by Yukihiro “Matz” Matsumoto, who started working on Ruby on February 24, 1993, and released it to the public [...]

Read Full Post »