Accessing Excel in Ruby CODE: require ‘win32ole’ excel = WIN32OLE.new(‘excel.application’) excel.visible = true work=excel.workbooks.open(“C:\\Documents and Settings\\rav… more →
Raveendranraveendran wrote 5 months ago: Accessing Excel in Ruby CODE: require ‘win32ole’ excel = WIN32OLE.new(‘excel.appli … more →
raveendran wrote 6 months ago: Ruby - convert number to english word CODE : class Fixnum def english_word @h = {0=>"zero", 1= … more →
raveendran wrote 9 months ago: What is the output of the following programs Note : Please find the answers manually —— … more →
raveendran wrote 1 year ago: Link Scraping from any URL: 1. Need to install Ruby1.8.6 2. Need to install gems –> gem ins … more →
raveendran wrote 1 year ago: Link Scraping from any URL: 1. Need to install Ruby1.8.6 2. Need to install gems –> gem ins … more →
raveendran wrote 2 years ago: Create an array: 1. x = [1, 2, 3, 4] puts x[2] output: 3 2. x[2] += 1 puts x[2] output: 4 3. x = [] … more →