Class: Romajify::CLI
- Inherits:
-
Thor
- Object
- Thor
- Romajify::CLI
- Defined in:
- lib/romajify/cli.rb
Overview
Command-line interface of Romajify
Instance Method Summary collapse
-
#hepburn(text) ⇒ Object
Convert kana to Hepburn romaji.
-
#kunrei(text) ⇒ Object
Convert kana to Kunrei-shiki romaji.
-
#nihon(text) ⇒ Object
Convert kana to Nihon-shiki romaji.
-
#version ⇒ Object
Print the version.
Instance Method Details
#hepburn(text) ⇒ Object
Convert kana to Hepburn romaji
17 18 19 |
# File 'lib/romajify/cli.rb', line 17 def hepburn(text) puts Converter.hepburn(text, ) end |
#kunrei(text) ⇒ Object
Convert kana to Kunrei-shiki romaji
35 36 37 |
# File 'lib/romajify/cli.rb', line 35 def kunrei(text) puts Converter.kunrei(text, ) end |