├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── utf8-cleaner.rb └── utf8-cleaner │ ├── middleware.rb │ ├── railtie.rb │ ├── uri_string.rb │ └── version.rb ├── spec ├── middleware_spec.rb ├── spec_helper.rb └── uri_string_spec.rb └── utf8-cleaner.gemspec /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/utf8-cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/lib/utf8-cleaner.rb -------------------------------------------------------------------------------- /lib/utf8-cleaner/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/lib/utf8-cleaner/middleware.rb -------------------------------------------------------------------------------- /lib/utf8-cleaner/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/lib/utf8-cleaner/railtie.rb -------------------------------------------------------------------------------- /lib/utf8-cleaner/uri_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/lib/utf8-cleaner/uri_string.rb -------------------------------------------------------------------------------- /lib/utf8-cleaner/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module UTF8Cleaner 4 | VERSION = '2.0.1' 5 | end 6 | -------------------------------------------------------------------------------- /spec/middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/spec/middleware_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/uri_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/spec/uri_string_spec.rb -------------------------------------------------------------------------------- /utf8-cleaner.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlebrook/utf8-cleaner/HEAD/utf8-cleaner.gemspec --------------------------------------------------------------------------------