Module: Origin::Extensions::Regexp::ClassMethods

Defined in:
lib/origin/extensions/regexp.rb

Instance Method Summary collapse

Instance Method Details

#evolve(object) ⇒ Regexp

Evolve the object into a regex.

Examples:

Evolve the object to a regex.

Regexp.evolve("^[123]")

Parameters:

Returns:

  • (Regexp)

    The evolved regex.

Since:

  • 1.0.0



30
31
32
33
34
# File 'lib/origin/extensions/regexp.rb', line 30

def evolve(object)
  __evolve__(object) do |obj|
    ::Regexp.new(obj)
  end
end