Created
March 12, 2015 14:43
-
-
Save kechol/326d0150a8e159b58b71 to your computer and use it in GitHub Desktop.
simple data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'yaml' | |
yaml = YAML.load_file("#{Rails.root}/db/seeds.yml") | |
yaml.each do |model_str, data| | |
model = model_str.capitalize.constantize | |
data.each do |id, row| | |
q = model.find_or_initialize_by id: id | |
q.update row | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Foo: | |
1: | |
foo: bar | |
2: | |
foo: baz | |
Bar: | |
1: | |
bar: baz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment