Tag: ruby

CSV and Rails

Today I hacked up some scripts to update a Rails database based off of what is in a SQL Server database. The goal was to automate the export of some information from SQL, send it to a remote server, and then update the Rails database with the current information. Using Ruby’s CSV library made this …

Read more

My Ruby Cookbook: #1 Textile Convertor

I just got a simple script working that will parse a text file that is marked up in “Textile”:http://textism.com/tools/textile/ and turn it into HTML(Hyper Text Markup Language). It is a simple “Ruby”:http://www.ruby-lang.org script that requires RubyGems and “RedCloth”:http://www.whytheluckystiff.net/ruby/redcloth/. Just run <typo:code> ruby textilize.rb myfile.txt another_file.txt </typo:code> and it will create a myfile.txt.html and another_file.txt.html. This …

Read more

Graph your life in Ruby

I been wanted to keep a log my life a bit better than just my completed TODO list but have not found an easy way to do it until now. I saw Erik Benson’s Website the other day and notice his “Morale-O-Meter” that was generated using Gruff. Since I just started to play with Gruff …

Read more