File: deprecated_regexp.rb

package info (click to toggle)
ruby-guard 2.18.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,344 kB
  • sloc: ruby: 9,256; makefile: 6
file content (45 lines) | stat: -rw-r--r-- 1,262 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
require_relative "matcher"

module Guard
  class Watcher
    class Pattern
      # TODO: remove before Guard 3.x
      class DeprecatedRegexp
        def initialize(pattern)
          @original_pattern = pattern
        end

        def self.convert(pattern)
          Matcher.new(Regexp.new(pattern))
        end

        def deprecated?
          regexp = /(^(\^))|(>?(\\\.)|(\.\*))|(\(.*\))|(\[.*\])|(\$$)/
          @original_pattern.is_a?(String) && regexp.match(@original_pattern)
        end

        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
      end
    end
  end
end