Communemashin 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4c5c11bf3f3d463a13dd1230abe8315306d2826fab144dc63fe47fdd914744b3
4
- data.tar.gz: aa351b1c05605f302bf6e39fe8931047e986b6cdf1c54726181a520e3a4d6660
3
+ metadata.gz: 11cfad77f44b3c28a20542c4d10f1d1b4f03ceb98bcfea975451fb869b90d973
4
+ data.tar.gz: fd27923c7b7627f3205a4ce7bb547a32d31f31ba4fd3f6c5830b0b080030c049
5
5
  SHA512:
6
- metadata.gz: a6d296ce5c4f0d753612b8c64a58b02afd6a0d71106ce752d241cfe80374f8f2bf8fd2acedefef286895d47e0fc735f6563dc5628cc97a443c72f231fccc71d9
7
- data.tar.gz: a3704cf8173b07f79cb1e500be7960a7f118451a416428bd185cde3d3eea128e034be47b9dd514471241a67230501006abf8116135629f1bf8f51fc5a3f6a9fa
6
+ metadata.gz: 0fdbb69578a3c9cec715d86a21b807f7078ab63b8c0d943b266ed73062a6846baafb96a8c474af5e6dc59f7dd1e6bfc8f6ac0d97f920dd86c309ae170e2c2d68
7
+ data.tar.gz: 2c966a89019cb93afebaaa99954b9067b9d440d39194c1adf14e053b02bf6492e47bf975c4232c8c3132650f16a0dcfb21518731d92d92ea897a6681bbcb96c8
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = "A form of AI that bridges the gap between Narrow and General AI."
13
13
  spec.homepage = "https://lwflouisa.itch.io/"
14
14
  spec.license = "MIT"
15
- spec.required_ruby_version = ">= 2.6.0"
15
+ spec.required_ruby_version = ">= 3.2.5"
16
16
 
17
17
  # Specify which files should be added to the gem when it is released.
18
18
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -28,8 +28,7 @@ Gem::Specification.new do |spec|
28
28
  spec.require_paths = ["lib"]
29
29
 
30
30
  # Uncomment to register a new dependency of your gem
31
- spec.add_dependency 'decisiontree', '~> 0.5.0'
32
- spec.add_dependency 'naive_bayes', '~> 0.0.3'
31
+ spec.add_dependency 'SelfModifiedDecisionTree', '~> 0.1.0'
33
32
 
34
33
  # For more information and examples about making a new gem, check out our
35
34
  # guide at: https://bundler.io/guides/creating_gem.html
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Communemashin
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end