Sha256: 12a2e3215e7eb82872a346c679e19102ff1c99893ff76ff1fd5fc5183bf7c819
Contents?: true
Size: 567 Bytes
Versions: 142
Compression:
Stored size: 567 Bytes
Contents
# frozen-string-literal: true # # The sql_expr extension adds the sql_expr method to every object, which # returns an wrapped object that works nicely with Sequel's DSL by calling # Sequel.expr: # # 1.sql_expr < :a # 1 < a # false.sql_expr & :a # FALSE AND a # true.sql_expr | :a # TRUE OR a # ~nil.sql_expr # NOT NULL # "a".sql_expr + "b" # 'a' || 'b' # # To load the extension: # # Sequel.extension :sql_expr # class Object # Return the object wrapper in an appropriate Sequel expression object. def sql_expr Sequel[self] end end
Version data entries
142 entries across 123 versions & 2 rubygems