class Guard::Watcher::Pattern::DeprecatedRegexp

TODO: remove before Guard 3.x

Public Class Methods

convert(pattern) click to toggle source
# File lib/guard/watcher/pattern/deprecated_regexp.rb, line 12
def self.convert(pattern)
  Matcher.new(Regexp.new(pattern))
end
new(pattern) click to toggle source
# File lib/guard/watcher/pattern/deprecated_regexp.rb, line 8
def initialize(pattern)
  @original_pattern = pattern
end
show_deprecation(pattern) click to toggle source
# File lib/guard/watcher/pattern/deprecated_regexp.rb, line 21
        def self.show_deprecation(pattern)
          @warning_printed ||= false

          unless @warning_printed
            msg = "*" * 20 + "\nDEPRECATION WARNING!\n" + "*" * 20
            msg += <<-MSG
            You have a string in your Guardfile watch patterns that seem to
            represent a Regexp.

            Guard matches String with == and Regexp with Regexp#match.

            You should either use plain String (without Regexp special
            characters) or real Regexp.
            MSG
            UI.deprecation(msg)
            @warning_printed = true
          end

          new_regexp = Regexp.new(pattern).inspect
          UI.info "\"#{pattern}\" will be converted to #{new_regexp}\n"
        end

Public Instance Methods

deprecated?() click to toggle source
# File lib/guard/watcher/pattern/deprecated_regexp.rb, line 16
def deprecated?
  regexp = /(^(\^))|(>?(\\\.)|(\.\*))|(\(.*\))|(\[.*\])|(\$$)/
  @original_pattern.is_a?(String) && regexp.match(@original_pattern)
end