12345678910111213141516 |
- Gem::Specification.new do |s|
- s.name = "confusion_matrix"
- s.platform = Gem::Platform::RUBY
- s.required_ruby_version = ['>= 2.5', '< 4.0']
- s.author = "Peter Lane"
- s.version = "1.1.0"
- s.email = "peterlane@gmx.com"
- s.summary = "Construct a confusion matrix and retrieve statistical information from it."
- s.licenses = ["MIT"]
- 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"
- s.files = ["LICENSE.rdoc", "README.rdoc", "lib/confusion_matrix.rb", "test/matrix_test.rb"]
- s.require_paths = ["lib"]
- s.extra_rdoc_files = ["README.rdoc", "LICENSE.rdoc"]
- s.rdoc_options << "-m" << "README.rdoc"
- end
|