I've been wanting to do some work for a while on the UI for our performance monitoring system. But the way the performance monitoring system works, it's difficult to create fake data for development.
The solution? Jump into a Rails console on our staging server and dump a few choice records to YAML files. It's an easy trick:
item = MyItem.find(...)
File.open("sample_item.yml", "w"){ |o| o.write(item.to_yaml) }
Now you can transfer the file to your computer and load the yaml into a model like so:
item = YAML.load_file("path/to/sample_item.yml")