aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/extensions/symbol.rb
blob: 9bb47ef7abf9431ec026081628b0b46aee9da78d (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  module SymbolExtensions
    def to_attribute(relation)
      Arel::Attribute.new(relation, self)
    end
    
    Symbol.send(:include, self)
  end
end