#yaml
3 posts tagged yaml. Clear filter
-
How to Merge a YAML File Into a Single Hash in Ruby
require 'yaml' Nested YAML structure from something-nested.yml nested: key: value keytwo: valuetwo Procedural Approach to building a single Hash from nested YAML data structure. @yaml =...
-
Rake DB Everything, Dump, Destroy, Create, Load
I'm a big fan of the yaml\db plugin. But I don't like running rake db:data:load, only to find that my db columns mismatch my model attributes, thus aborting the data import task. To quickly...
-
Manage Fixtures with Yaml DB Plugin for Rails
Get the plugin like so... This command will dump your data And load it back Beautiful :) More info here http://blog.heroku.com/archives/2007/11/23/yamldb\for\databaseindependent\data\dumps/ and...