codebreaker-mikhail 0.1.4 → 0.2.0

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: 7cf4b6ee4c19ccb5c04bed6b800065d05d925515fbade8708c4566c0562b2d1e
4
- data.tar.gz: a1d0c3d98e98fe741b70ca48a53b478a35a52d1a4a07f3c8bc105f01658bfbbc
3
+ metadata.gz: 33371601599f7947de47dffc470f4149670bbb01ff104dd298d3d899e5a2c3b1
4
+ data.tar.gz: 33ddf02486b9bab5f2168965bff2e1cb575c67e2ab6a844a4f5515fbb7dd7153
5
5
  SHA512:
6
- metadata.gz: b79218f0653367da15902f2d1606189d1b232130faac8960a8ddb42b5a276bdd68e716b9277d3d18ff981082adbda8cb53eb0abdb63966ac4c96053a5de6e478
7
- data.tar.gz: 1434f0494d645e16317c621200b84ff02c61b7bcdf43077e238f74658944455e4c4ed21d3accffef0846bd68808cf8af2fb69dbf09b384f1555800c38d047adf
6
+ metadata.gz: 030cd63a65db415c6c8f93c439f2400c2285ddd74102f0fc650b1882272393783d361cb449a677defa2f1b790b7072fc40e68ccf4ed2884a05dc3cf4c0b83906
7
+ data.tar.gz: ff5ad7439f814845c9b3e74a44e54d9315459b2d1971aaf7de19ae599d4c312b8687668068596fb8652085ded69407f7fec781ec69d7a82fad876d98a5971c02
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- codebreaker-mikhail (0.1.2)
4
+ codebreaker-mikhail (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Codebreaker
4
- module FileStore
4
+ module FileStore
5
5
  FILE_DIRECTORY = "statistics"
6
6
  FILE_NAME = "statistics.yml"
7
7
 
@@ -17,6 +17,14 @@ module Codebreaker
17
17
  (YAML.load_file(storage_path) || {})[:codebrakers] || []
18
18
  end
19
19
 
20
+ def statistics
21
+ load_file.each.sort_by { |game| [game[:attempts], game[:used_hints], game[:used_attempts]] }
22
+ end
23
+
24
+ def self.statistics
25
+ load_file.each.sort_by { |game| [game[:attempts], game[:used_hints], game[:used_attempts]] }
26
+ end
27
+
20
28
  private
21
29
 
22
30
  def create_storage
@@ -26,10 +26,6 @@ module Codebreaker
26
26
  MatrixGenerator.new(input, @secret_code).call
27
27
  end
28
28
 
29
- def self.statistics
30
- load_file.each.sort_by { |game| [game[:attempts], game[:used_hints], game[:used_attempts]] }
31
- end
32
-
33
29
  def hints?
34
30
  (user.hints <= Constants::DIFFICULTIES[@user.difficulty][:hints]) && user.hints.positive?
35
31
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Codebreaker
4
- VERSION = "0.1.4"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codebreaker-mikhail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikhail Bogun
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-07 00:00:00.000000000 Z
11
+ date: 2022-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler