Ruby “require” statement

Question: I am evaluating your product for ruby on windows xp and followed the quick start and unzipped the files into a new directory on my C drive. In my script where it calls for chilkat with the “require chilkat” statement, I get an error that says that gem can’t be found on the system. I tried doing a gem […]

Date/Time Properties in Ruby

This is an example that generally applies to all methods/properties in the Chilkat API’s that return a date/time (for the Ruby programming language) sysTime = Chilkat::SYSTEMTIME.new() # Get the last-mod date/time fileObj.GetLastModifiedTime(sysTime) lastModTime = sysTime.wMonth.to_s() lastModTime = lastModTime + “/” + sysTime.wDay.to_s() lastModTime = lastModTime + “/” + sysTime.wYear.to_s() lastModTime = lastModTime + ” ” + sysTime.wHour.to_s() lastModTime = lastModTime […]