confusion_matrix.gemspec 814 B

12345678910111213141516
  1. Gem::Specification.new do |s|
  2. s.name = "confusion_matrix"
  3. s.platform = Gem::Platform::RUBY
  4. s.required_ruby_version = ['>= 2.5', '< 4.0']
  5. s.author = "Peter Lane"
  6. s.version = "1.1.0"
  7. s.email = "peterlane@gmx.com"
  8. s.summary = "Construct a confusion matrix and retrieve statistical information from it."
  9. s.licenses = ["MIT"]
  10. s.description = "A confusion matrix is used in data-mining as a summary of the performance of a\nclassification algorithm. This library allows the user to incrementally add \nresults to a confusion matrix, and then retrieve statistical information.\n"
  11. s.files = ["LICENSE.rdoc", "README.rdoc", "lib/confusion_matrix.rb", "test/matrix_test.rb"]
  12. s.require_paths = ["lib"]
  13. s.extra_rdoc_files = ["README.rdoc", "LICENSE.rdoc"]
  14. s.rdoc_options << "-m" << "README.rdoc"
  15. end