├── .circleci └── config.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Changelog.md ├── Gemfile ├── README.md ├── Rakefile ├── anima.gemspec ├── config ├── flay.yml ├── flog.yml ├── mutant.yml ├── reek.yml ├── rubocop.yml └── yardstick.yml ├── lib ├── anima.rb └── anima │ ├── attribute.rb │ └── error.rb ├── mutant.sh └── spec ├── integration └── simple_spec.rb ├── spec_helper.rb └── unit ├── anima ├── attribute_spec.rb └── error_spec.rb └── anima_spec.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.rspec 2 | /Gemfile.lock 3 | /.rbx 4 | /.bundle 5 | /vendor 6 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/Changelog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/Rakefile -------------------------------------------------------------------------------- /anima.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/anima.gemspec -------------------------------------------------------------------------------- /config/flay.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 6 3 | total_score: 29 4 | -------------------------------------------------------------------------------- /config/flog.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 11.9 3 | -------------------------------------------------------------------------------- /config/mutant.yml: -------------------------------------------------------------------------------- 1 | --- 2 | integration: rspec 3 | -------------------------------------------------------------------------------- /config/reek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/config/reek.yml -------------------------------------------------------------------------------- /config/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/config/rubocop.yml -------------------------------------------------------------------------------- /config/yardstick.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 100 3 | -------------------------------------------------------------------------------- /lib/anima.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/lib/anima.rb -------------------------------------------------------------------------------- /lib/anima/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/lib/anima/attribute.rb -------------------------------------------------------------------------------- /lib/anima/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/lib/anima/error.rb -------------------------------------------------------------------------------- /mutant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/mutant.sh -------------------------------------------------------------------------------- /spec/integration/simple_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/spec/integration/simple_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/anima/attribute_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/spec/unit/anima/attribute_spec.rb -------------------------------------------------------------------------------- /spec/unit/anima/error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/spec/unit/anima/error_spec.rb -------------------------------------------------------------------------------- /spec/unit/anima_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbj/anima/HEAD/spec/unit/anima_spec.rb --------------------------------------------------------------------------------