aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/memory/engine.rb
blob: c7ac9422d42ead3ae4dd4e4805f1c631a96bfbc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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