Sha256: a1234f684e9678d3b0cd8ddf47810e239a288ebd5f9344a7c1b5e45bb4e263b2
Contents?: true
Size: 778 Bytes
Versions: 29
Compression:
Stored size: 778 Bytes
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 module TwitterCldr module Transforms module Transforms class BlankTransform < TransformRule TRANSFORM = 'blank'.freeze def self.instance @instance ||= new end private def initialize super(nil, nil) end public def apply_to(cursor) puts 'BLANK' if $debug end def null? false end def blank? true end def transform TRANSFORM end def has_transform?(*args) false end def apply_to(cursor) # do nothing end end end end end
Version data entries
29 entries across 29 versions & 1 rubygems