1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/active_relation/engines/engine.rb
Nick Kallen 98527c8f7d basic functionality for simplest active record find(id)
- messy code, to be cleaned up this weekend
2008-03-05 22:12:21 -08:00

18 lines
No EOL
604 B
Ruby

module ActiveRelation
# this file is currently just a hack to adapt between activerecord::base which holds the connection specification
# and active relation. ultimately, this file should be in effect what the connection specification is in active record;
# that is: a spec of the database (url, password, etc.), a quoting adapter layer, and a connection pool.
class Engine
def initialize(ar = nil)
@ar = ar
end
def connection
@ar.connection
end
def method_missing(method, *args, &block)
@ar.connection.send(method, *args, &block)
end
end
end