class DakeScheme::Regex

Constants

PATTERN

Public Class Methods

new(scheme_part, path_part, step) click to toggle source
# File lib/dake/scheme.rb, line 27
def initialize(scheme_part, path_part, step)
  @src = path_part
  @path = Regexp.compile("^#{path_part}$")
  @step = step
end