Sha256: 354037b5ce8fafe092aedb900b92b9d84a11f7b13afd534a068198a845164b4f
Contents?: true
Size: 474 Bytes
Versions: 42
Compression:
Stored size: 474 Bytes
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 require 'singleton' module TwitterCldr module Transforms class CommentRule < Rule include Singleton class << self def parse(rule_text, symbol_table, index) instance end def accepts?(rule_text) rule_text.strip.start_with?('#') end end def is_comment? true end end end end
Version data entries
42 entries across 42 versions & 2 rubygems