1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/nodes/sql_literal.rb

9 lines
140 B
Ruby
Raw Normal View History

2010-08-12 18:26:04 -04:00
module Arel
module Nodes
2010-08-13 11:11:08 -04:00
class SqlLiteral < String
2010-09-14 18:20:24 -04:00
include Arel::Expressions
include Arel::Predications
2010-08-12 18:26:04 -04:00
end
end
end