├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .rspec ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── wavedash.rb └── wavedash │ └── version.rb ├── spec ├── encoding │ ├── cp932_spec.rb │ ├── euc_jp_spec.rb │ ├── eucjp_ms_spec.rb │ └── shift_jis_spec.rb ├── spec_helper.rb └── wavedash_spec.rb └── wavedash.gemspec /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/wavedash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/lib/wavedash.rb -------------------------------------------------------------------------------- /lib/wavedash/version.rb: -------------------------------------------------------------------------------- 1 | module Wavedash 2 | VERSION = "0.1.2" 3 | end 4 | -------------------------------------------------------------------------------- /spec/encoding/cp932_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/spec/encoding/cp932_spec.rb -------------------------------------------------------------------------------- /spec/encoding/euc_jp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/spec/encoding/euc_jp_spec.rb -------------------------------------------------------------------------------- /spec/encoding/eucjp_ms_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/spec/encoding/eucjp_ms_spec.rb -------------------------------------------------------------------------------- /spec/encoding/shift_jis_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/spec/encoding/shift_jis_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/wavedash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/spec/wavedash_spec.rb -------------------------------------------------------------------------------- /wavedash.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatoshiono/wavedash/HEAD/wavedash.gemspec --------------------------------------------------------------------------------