A Wrapper
is a simple way to wrap an existing object so that it supports the Sequel
DSL.
Attributes
value | [R] |
The underlying value wrapped by this object. |
Public Class methods
new(value)
Set the value wrapped by the object.
[show source]
# File lib/sequel/sql.rb 2010 def initialize(value) 2011 @value = value 2012 freeze 2013 end