Here are a few Ruby files I am working on.
Filename_get.rb
Traverses the c drive and install file information into a mysql database
download file
Filename_check.rb
Fetches the data created in #1 and checks to see if it has been updated.
Also it will insert each row of the ascii file (non-ascii are excluded) into a table that can be used query.
download file
Pretty.rb
This pretties up your ruby code.
Retabs lines with 4 spaces and adds an incremental comment at the beginning and end of each block
download file
eg
if 1==1 #1000
begin #2000
end #2000
if 1==1 #2010
end #2010
end #1000
if 1==1 #1010
end #1010