├── .gitignore ├── .travis.yml ├── Appraisals ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── fluent-plugin-anonymizer.gemspec ├── lib └── fluent │ └── plugin │ └── filter_anonymizer.rb └── test ├── helper.rb └── plugin └── test_filter_anonymizer.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | vendor/* 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/Appraisals -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/Rakefile -------------------------------------------------------------------------------- /fluent-plugin-anonymizer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/fluent-plugin-anonymizer.gemspec -------------------------------------------------------------------------------- /lib/fluent/plugin/filter_anonymizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/lib/fluent/plugin/filter_anonymizer.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/plugin/test_filter_anonymizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ken/fluent-plugin-anonymizer/HEAD/test/plugin/test_filter_anonymizer.rb --------------------------------------------------------------------------------