Skip to content

Instantly share code, notes, and snippets.

@mobyjames
Created November 2, 2012 16:38
Show Gist options
  • Save mobyjames/4002510 to your computer and use it in GitHub Desktop.
Save mobyjames/4002510 to your computer and use it in GitHub Desktop.
Manage development (or other) data using fixtures
namespace :db do
namespace :fixtures do
task :dump, [:table] => [:environment] do |t, args|
sql = "SELECT * FROM %s"
skip_tables = ["schema_info", "schema_migrations", "delayed_jobs", "sessions", "versions"]
ActiveRecord::Base.establish_connection(Rails.env)
tables = nil
if args[:table].nil?
puts 'dumping all tables'
tables = ActiveRecord::Base.connection.tables - skip_tables
else
puts "dumping table: #{args[:table]}"
tables = [args[:table]]
end
tables.each do |table_name|
i = "000"
File.open("#{Rails.root}/test/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
namespace :fixtures do
task :load_single, [:table] => [:environment] do |t, args|
require 'active_record/fixtures'
ActiveRecord::Base.establish_connection(ActiveRecord::Base.configurations[Rails.env])
ActiveRecord::Fixtures.create_fixtures("test/fixtures", [args[:table]])
puts "Fixture #{args[:table]} loaded"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment