parent
14f4097a7b
commit
1f25e16c0e
|
@ -35,11 +35,14 @@ module Impressionist
|
||||||
end
|
end
|
||||||
|
|
||||||
def define_orm_type(str)
|
def define_orm_type(str)
|
||||||
str = str.to_s
|
@orm = matcher(str.to_s)
|
||||||
@orm = str.match(/active_record|mongo_mapper|mongoid|/)
|
|
||||||
:matched
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def matcher(str)
|
||||||
|
matched = str.match(/active_record|mongo_mapper|mongoid|/)
|
||||||
|
matched[0]
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue