Created
March 9, 2012 09:27
-
-
Save boffbowsh/2005833 to your computer and use it in GitHub Desktop.
Use FIXTURES=table_1,table_2 if you want to specify
This file contains hidden or 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
| desc 'Create YAML test fixtures from data in an existing database. | |
| Defaults to development database. Set RAILS_ENV to override.' | |
| namespace :db do | |
| namespace :fixtures do | |
| task :extract => :environment do | |
| sql = "SELECT * FROM %s" | |
| skip_tables = ["schema_migrations"] | |
| ActiveRecord::Base.establish_connection | |
| if ENV["FIXTURES"] | |
| tables = ENV["FIXTURES"].split(",") | |
| else | |
| tables = (ActiveRecord::Base.connection.tables - skip_tables) | |
| end | |
| tables.each do |table_name| | |
| i = "000" | |
| File.open(Rails.root.join("spec/fixtures/#{table_name}.yml"), 'w') do |file| | |
| data = ActiveRecord::Base.connection.select_all(sql % table_name) | |
| file.write data.inject({}) { |hash, record| | |
| hash["#{table_name}_#{i.succ!}"] = record | |
| hash | |
| }.to_yaml | |
| end | |
| end | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment