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