Search Results

1
vote
1answer
221 views

How to include metadata in a template file?

I have a system that filters template files through erb. Using convention over configuration, the output files get created in a file hierarchy that mirrors the input files. Many of the files have …
0
votes

How do I create a new Ruby on Rails application using MySQL instead of SQLite?

giancarlo -- remember this Q&A when you upgrade from Rails 2.0 to Rails 2.0.2 -- that was the version where SQLite became the default database for a new application instead of MySQL. Pl …
1
vote

Interpret \n within irb or script/console

The Ruby yaml library includes the "y" command, which takes care of both the yamlizing and the formatting: y object.methods.sort …
2
votes

Obtain Date from an RSS Feed in Ruby

Take a look at the rss feed using Firefox so you can easily see the structure of the feed. The date items are represented using "Dublin Core" <dc:date> Try this: …
1
vote

bracket syntax for Ruby Hashes

This seems like a good place to mention another alternate syntax, using the comma to separate items within braces (using your example): @seat = Seat.new({:flight_id, @flight.id}) …