Class ActiveRecord::Extensions::RegexpBase::RegexpResult
In: lib/ar-extensions/extensions.rb
Parent: Object

A result class which provides an easy interface.

Methods

negate?   new  

Attributes

fieldname  [R] 
negate  [R] 

Public Class methods

[Source]

     # File lib/ar-extensions/extensions.rb, line 335
335:       def initialize( fieldname, negate=false )
336:         @fieldname, @negate = fieldname, negate
337:       end

Public Instance methods

[Source]

     # File lib/ar-extensions/extensions.rb, line 339
339:       def negate?
340:         negate ? true : false
341:       end

[Validate]