Skip to content

Instantly share code, notes, and snippets.

@softprops
Created July 4, 2009 04:21
Show Gist options
  • Save softprops/140427 to your computer and use it in GitHub Desktop.
Save softprops/140427 to your computer and use it in GitHub Desktop.
require 'rufus/tokyo'
db = Rufus::Tokyo::Table.new('data.tct')
date_col = 'created_at'
1.upto(5) { |i| db[i.to_s] = { date_col => Time.now.to_s }; sleep 1 }
pp db.query { |q| q.order_by date_col, :asc }
pp db.query { |q| q.order_by date_col, :desc }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment