Changed to use spoon's meethod

git-svn-id: file:///home/svn/incoming/trunk@3590 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2006-04-03 04:50:26 +00:00
parent 7b4fb0d6aa
commit 457f476b4c
1 changed files with 14 additions and 18 deletions

View File

@ -19,27 +19,23 @@ end
# ActiveRecord/sqlite3 has locking issues when you update a table with a pending select # ActiveRecord/sqlite3 has locking issues when you update a table with a pending select
# This set of instance/class wrappers should prevent a table lock # This set of instance/class wrappers should prevent a table lock
# Straight up gangsta shit from spoon (ripped from BION)
module DBSave module DBSave
module InstanceMethods
def save(*args) def save(*args)
Lock.mutex.synchronize do Lock.mutex.synchronize do
super(*args) super(*args)
end end
end end
end
module ClassMethods def self.included(mod)
class << mod
def find(*args) def find(*args)
Lock.mutex.synchronize do Lock.mutex.synchronize do
super(*args) super(*args)
end end
end end
end end
def self::included(other)
other.module_eval{ include InstanceMethods }
other.extend ClassMethods
end end
end end