class TwitterCldr::Transforms::Transforms::BlankTransform

Constants

TRANSFORM

Public Class Methods

instance() click to toggle source
# File lib/twitter_cldr/transforms/transforms/blank_transform.rb, line 13
def self.instance
  @instance ||= new
end
new() click to toggle source
Calls superclass method
# File lib/twitter_cldr/transforms/transforms/blank_transform.rb, line 19
def initialize
  super(nil, nil)
end

Public Instance Methods

apply_to(cursor) click to toggle source
# File lib/twitter_cldr/transforms/transforms/blank_transform.rb, line 25
def apply_to(cursor)
  puts 'BLANK' if $debug
end
blank?() click to toggle source
# File lib/twitter_cldr/transforms/transforms/blank_transform.rb, line 33
def blank?
  true
end
has_transform?(*args) click to toggle source
# File lib/twitter_cldr/transforms/transforms/blank_transform.rb, line 41
def has_transform?(*args)
  false
end
null?() click to toggle source
# File lib/twitter_cldr/transforms/transforms/blank_transform.rb, line 29
def null?
  false
end
transform() click to toggle source
# File lib/twitter_cldr/transforms/transforms/blank_transform.rb, line 37
def transform
  TRANSFORM
end