class Sequel::SQL::Wrapper

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) click to toggle source

Set the value wrapped by the object.

     # File lib/sequel/sql.rb
2006 def initialize(value)
2007   @value = value
2008   freeze
2009 end