Skip to content

Instantly share code, notes, and snippets.

@boffbowsh
Created March 9, 2012 09:27
Show Gist options
  • Select an option

  • Save boffbowsh/2005833 to your computer and use it in GitHub Desktop.

Select an option

Save boffbowsh/2005833 to your computer and use it in GitHub Desktop.
Use FIXTURES=table_1,table_2 if you want to specify
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