Tidy code style

This commit is contained in:
Sam Oliver
2021-09-17 12:56:27 +02:00
parent e30c18853a
commit aad3b61d10
12 changed files with 205 additions and 204 deletions

View File

@@ -1,16 +1,15 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "decisiontree"
s.version = "0.5.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Ilya Grigorik"]
s.email = ["ilya@igvita.com"]
s.homepage = "https://github.com/igrigorik/decisiontree"
s.summary = %q{ID3-based implementation of the M.L. Decision Tree algorithm}
s.name = "decisiontree"
s.version = "0.5.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Ilya Grigorik"]
s.email = ["ilya@igvita.com"]
s.homepage = "https://github.com/igrigorik/decisiontree"
s.summary = "ID3-based implementation of the M.L. Decision Tree algorithm"
s.description = s.summary
s.license = "MIT"
s.license = "MIT"
s.rubyforge_project = "decisiontree"
@@ -19,8 +18,8 @@ Gem::Specification.new do |s|
s.add_development_dependency "rspec-given"
s.add_development_dependency "pry"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ["lib"]
end