Class: NHKore::Splitter

Inherits:
Object
  • Object
show all
Defined in:
lib/nhkore/splitter.rb

Direct Known Subclasses

BasicSplitter, BimyouSplitter, TinySplitter

Instance Method Summary collapse

Instance Method Details

#begin_split(str) ⇒ Object



15
16
17
# File 'lib/nhkore/splitter.rb', line 15

def begin_split(str)
  return str
end

#split(str) ⇒ Object



19
20
21
22
23
24
# File 'lib/nhkore/splitter.rb', line 19

def split(str)
  str = begin_split(str)
  str = end_split(str)

  return str
end