├── .rspec ├── .travis.yml ├── Gemfile ├── Guardfile ├── README.md ├── Rakefile ├── lib ├── romaji.rb └── romaji │ ├── constants.rb │ ├── core_ext │ └── string.rb │ ├── string_extension.rb │ └── version.rb ├── romaji.gemspec └── spec ├── romaji_spec.rb └── spec_helper.rb /.rspec: -------------------------------------------------------------------------------- 1 | --color --format doc 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/Guardfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/romaji.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/lib/romaji.rb -------------------------------------------------------------------------------- /lib/romaji/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/lib/romaji/constants.rb -------------------------------------------------------------------------------- /lib/romaji/core_ext/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/lib/romaji/core_ext/string.rb -------------------------------------------------------------------------------- /lib/romaji/string_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/lib/romaji/string_extension.rb -------------------------------------------------------------------------------- /lib/romaji/version.rb: -------------------------------------------------------------------------------- 1 | module Romaji 2 | VERSION = '0.3.0' 3 | end 4 | 5 | -------------------------------------------------------------------------------- /romaji.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/romaji.gemspec -------------------------------------------------------------------------------- /spec/romaji_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/spec/romaji_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makimoto/romaji/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------