class Sequel::SQL::Wrapper
A Wrapper
is a simple way to wrap an existing object so that it supports the Sequel
DSL.
Attributes
The underlying value wrapped by this object.
Public Class Methods
Source
# File lib/sequel/sql.rb 2016 def initialize(value) 2017 @value = value 2018 freeze 2019 end
Set the value wrapped by the object.