mirror of https://github.com/rails/rails
Add test sqlite3 db to .gitignore
This commit is contained in:
parent
5b1a1bf5bf
commit
e945bcfe4a
|
@ -8,6 +8,7 @@ activesupport/doc
|
|||
activeresource/pkg
|
||||
activerecord/pkg
|
||||
actionpack/pkg
|
||||
activemodel/test/fixtures/fixture_database.sqlite3
|
||||
actionmailer/pkg
|
||||
activesupport/pkg
|
||||
railties/pkg
|
||||
|
|
|
@ -9,9 +9,6 @@ require 'active_record'
|
|||
require 'logger'
|
||||
ActiveRecord::Base.logger = Logger.new("debug.log")
|
||||
|
||||
class SqliteError < StandardError
|
||||
end
|
||||
|
||||
# Setup database connection
|
||||
db_file = "#{FIXTURES_ROOT}/fixture_database.sqlite3"
|
||||
ActiveRecord::Base.configurations = { ActiveRecord::Base.name => { :adapter => 'sqlite3', :database => db_file, :timeout => 5000 } }
|
||||
|
@ -19,7 +16,7 @@ unless File.exist?(db_file)
|
|||
puts "SQLite3 database not found at #{db_file}. Rebuilding it."
|
||||
sqlite_command = %Q{sqlite3 "#{db_file}" "create table a (a integer); drop table a;"}
|
||||
puts "Executing '#{sqlite_command}'"
|
||||
raise SqliteError.new("Seems that there is no sqlite3 executable available") unless system(sqlite_command)
|
||||
raise StandardError.new("Seems that there is no sqlite3 executable available") unless system(sqlite_command)
|
||||
end
|
||||
ActiveRecord::Base.establish_connection(ActiveRecord::Base.name)
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue