# File lib/arel/select_manager.rb, line 129 def project *projections # FIXME: converting these to SQLLiterals is probably not good, but # rails tests require it. @ctx.projections.concat projections.map { |x| [Symbol, String].include?(x.class) ? SqlLiteral.new(x.to_s) : x } self end