replace RAILS_ROOT to Rails.root at lib/tasks/extract_fixtures.rake.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6088 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
5f71daee26
commit
29b0a71eab
|
@ -7,7 +7,7 @@ task :extract_fixtures => :environment do
|
|||
ActiveRecord::Base.establish_connection
|
||||
(ActiveRecord::Base.connection.tables - skip_tables).each do |table_name|
|
||||
i = "000"
|
||||
File.open("#{RAILS_ROOT}/#{table_name}.yml", 'w' ) do |file|
|
||||
File.open("#{Rails.root}/#{table_name}.yml", 'w' ) do |file|
|
||||
data = ActiveRecord::Base.connection.select_all(sql % table_name)
|
||||
file.write data.inject({}) { |hash, record|
|
||||
# cast extracted values
|
||||
|
@ -19,4 +19,5 @@ task :extract_fixtures => :environment do
|
|||
}.to_yaml
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue