aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/engines/memory/engine.rb
blob: c7ac9422d42ead3ae4dd4e4805f1c631a96bfbc7 (plain) (tree)
1
2
3
4
5
6
7
8






                          
 


                            



                  
   
module Arel
  module Memory
    class Engine
      module CRUD
        def read(relation)
          relation.eval
        end

        def create(relation)
          relation.eval
        end
      end
      include CRUD
    end
  end
end