Sha256: f1e24e3e7657dc986d70b2396b086e8f0f65d8f227ca6ad0637d0ceb168090b1

Contents?: true

Size: 1.18 KB

Versions: 2

Compression:

Stored size: 1.18 KB

Contents

module Nanoc::Int
  # @api private
  class Pattern
    def self.from(obj)
      case obj
      when Nanoc::Int::StringPattern, Nanoc::Int::RegexpPattern
        obj
      when String
        Nanoc::Int::StringPattern.new(obj)
      when Regexp
        Nanoc::Int::RegexpPattern.new(obj)
      else
        raise ArgumentError, "Do not know how to convert #{obj} into a Nanoc::Pattern"
      end
    end

    def initialize(_obj)
      raise NotImplementedError
    end

    def match?(_identifier)
      raise NotImplementedError
    end

    def captures(_identifier)
      raise NotImplementedError
    end
  end

  # @api private
  class StringPattern
    def initialize(string)
      @string = string
    end

    def match?(identifier)
      opts = File::FNM_PATHNAME | File::FNM_EXTGLOB
      File.fnmatch(@string, identifier.to_s, opts)
    end

    def captures(_identifier)
      nil
    end
  end

  # @api private
  class RegexpPattern
    def initialize(regexp)
      @regexp = regexp
    end

    def match?(identifier)
      (identifier.to_s =~ @regexp) != nil
    end

    def captures(identifier)
      matches = @regexp.match(identifier.to_s)
      matches && matches.captures
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
nanoc-4.0.0b4 lib/nanoc/base/entities/pattern.rb
nanoc-4.0.0b3 lib/nanoc/base/pattern.rb