Sha256: 7756ce50e2b6114b9be34286a97dfc9a3f44f4e0c98e4e093401591069584bb6

Contents?: true

Size: 1.29 KB

Versions: 23

Compression:

Stored size: 1.29 KB

Contents

# Copyright (C) 2013  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

module ChupaText
  class Decomposer
    class << self
      def registry
        @@registry ||= DecomposerRegistry.new
      end
    end

    def initialize(options)
      @options = options
    end

    def target?(data)
      raise NotImplementedError, "must implement #{self.class}\##{__method__}"
    end

    def target_score(data)
      if target?(data)
        0
      else
        nil
      end
    end

    def decompose(data)
      raise NotImplementedError, "must implement #{self.class}\##{__method__}"
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
chupa-text-1.3.6 lib/chupa-text/decomposer.rb
chupa-text-1.3.5 lib/chupa-text/decomposer.rb
chupa-text-1.3.4 lib/chupa-text/decomposer.rb
chupa-text-1.3.3 lib/chupa-text/decomposer.rb
chupa-text-1.3.2 lib/chupa-text/decomposer.rb
chupa-text-1.3.1 lib/chupa-text/decomposer.rb
chupa-text-1.3.0 lib/chupa-text/decomposer.rb
chupa-text-1.2.9 lib/chupa-text/decomposer.rb
chupa-text-1.2.8 lib/chupa-text/decomposer.rb
chupa-text-1.2.7 lib/chupa-text/decomposer.rb
chupa-text-1.2.6 lib/chupa-text/decomposer.rb
chupa-text-1.2.5 lib/chupa-text/decomposer.rb
chupa-text-1.2.4 lib/chupa-text/decomposer.rb
chupa-text-1.2.3 lib/chupa-text/decomposer.rb
chupa-text-1.2.2 lib/chupa-text/decomposer.rb
chupa-text-1.2.1 lib/chupa-text/decomposer.rb
chupa-text-1.2.0 lib/chupa-text/decomposer.rb
chupa-text-1.1.9 lib/chupa-text/decomposer.rb
chupa-text-1.1.8 lib/chupa-text/decomposer.rb
chupa-text-1.1.7 lib/chupa-text/decomposer.rb