aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/lock.rb
blob: f4eaf125e037d5f055742dca2ae62beee7b85817 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Arel
  module Nodes
    class Lock < Arel::Nodes::Node
      attr_reader :locking
      def initialize locking = true
        @locking = locking
      end
    end
  end
end