I have a simple problem and maybe someone could help -- my requirement is pretty simple:
o I do a lot of scripting in Ruby, for plumbing our Rails web and Java legacy applications.
o I need to persist [string1,string2,string3] data, such as:
"apple", "november", "5"
o I do this quite often with different data sets
o Performance is not a major concern
o Simplicity is best
o I need to be able to retrieve them and update them easily
I have been using ActiveRecord (object.new, object.save, etc) to do this with a table with 3 columns, however I found it a bit too heavy-duty for this simple purpose because I have to use different databases since the data are in different locations..
I wonder if anyone could share some Ruby-Fu or a Ruby library tips on this.