├── .github └── workflows │ └── build.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── anomaly.gemspec ├── lib ├── anomaly.rb └── anomaly │ ├── detector.rb │ └── version.rb └── spec ├── anomaly └── detector_spec.rb └── spec_helper.rb /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/Rakefile -------------------------------------------------------------------------------- /anomaly.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/anomaly.gemspec -------------------------------------------------------------------------------- /lib/anomaly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/lib/anomaly.rb -------------------------------------------------------------------------------- /lib/anomaly/detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/lib/anomaly/detector.rb -------------------------------------------------------------------------------- /lib/anomaly/version.rb: -------------------------------------------------------------------------------- 1 | module Anomaly 2 | VERSION = "0.4.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/anomaly/detector_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/spec/anomaly/detector_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/anomaly/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------