codebreaker_bo 0.1.3 → 0.1.6

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: fe9a8ad138ec2d9cff2eaf88dc58cdd3492a8c62137c1288e912581576f4f214
4
- data.tar.gz: de6f9f5157baa191c19aea4053da0e2e2b05bd47a92a433d8bd99336cf71c9c4
3
+ metadata.gz: 41c74c3d34c0613fd1561253030059a6ab61222e8aad34dc7d99e0b31f767456
4
+ data.tar.gz: 1d2d4570474a1e19262905b22a126e61e43dc9c9f97446b2984984f8a5b6b4c9
5
5
  SHA512:
6
- metadata.gz: 905d2f0cd0efa4ea97beeaea463b78a873c24d0d6ea0082c86a7f9f6eb4a12ac0afd2543ddc6ad1513bc8043f2541f1d41efd81076aa0ac97db2388460e714bd
7
- data.tar.gz: 3596da0b4e91ba3758fe7de20b588c29fc3e4257e99c20921f3f3b9e7102f5a43a63fdc39143f45fbd38d2b1d155e801c07abe2f9735c525536bd3cb0d240b97
6
+ metadata.gz: c6665492feee77e52af8e1838178520bb331d95c0964510ebf53f0f7624aa79baa157ada381223c480471efc40be6f2c7c9b8f9367bccbcb60a18419c6685370
7
+ data.tar.gz: c5ad83a10e7fd5948d97ec0ddcbe123bd84a88efb2780e2bd1d98584fb47abedfd80a1098ea246f8a3a0b0f1189b285cc28b10a7972cd2a00c6d15685b74edb7
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- codebreaker_bo (0.1.3)
4
+ codebreaker_bo (0.1.6)
5
5
  json (~> 2.6.1)
6
6
 
7
7
  GEM
@@ -0,0 +1,13 @@
1
+ ---
2
+ - :user_name: WEWEE
3
+ :difficulty: easy
4
+ :attempts_total: 15
5
+ :attempts_used: 15
6
+ :hints_total: 2
7
+ :hints_used: 2
8
+ - :user_name: TWTWTWT
9
+ :difficulty: medium
10
+ :attempts_total: 10
11
+ :attempts_used: 10
12
+ :hints_total: 1
13
+ :hints_used: 1
@@ -1,15 +1,27 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative 'validation'
3
4
  module Codebreaker
4
5
  class BaseClass
5
- def valid?
6
- @errors.empty?
6
+ include Validator
7
+ attr_accessor :errors
8
+
9
+ def initialize
10
+ @errors = []
7
11
  end
8
12
 
9
- private
13
+ def handle_errors(text)
14
+ @errors << text
15
+ end
10
16
 
11
17
  def show_errors
12
- @errors.each { |error| p error } unless valid?
18
+ data = errors.flatten
19
+ clear_errors
20
+ data
21
+ end
22
+
23
+ def clear_errors
24
+ @errors = []
13
25
  end
14
26
  end
15
27
  end
File without changes
@@ -1,15 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'codebreaker'
4
- #
5
- # u = Codebreaker::User.new('Bpgdan')
6
- # p u
7
-
8
- g = Codebreaker::Game.new
9
- # name = gets.chomp
10
- # level = gets.chomp
11
- p g
12
- g.create_settings('Vkjkk', 'easy')
13
- p g
14
- # p g.check_guess(4444)
15
- # p g.used_attempts
File without changes
@@ -1,13 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Constants
4
- EASY = { attempts: 15,
5
- hints: 2 }.freeze
4
+ LEVELS = {
5
+ easy: { attempts: 15, hints: 2 },
6
+ medium: { attempts: 10, hints: 1 },
7
+ hell: { attempts: 5, hints: 1 }
8
+ }.freeze
6
9
 
7
- MEDIUM = { attempts: 10,
8
- hints: 1 }.freeze
9
- HELL = { attempts: 5,
10
- hints: 1 }.freeze
11
10
  PLUS = '+'
12
11
  MINUS = '-'
13
12
  WIN_NUMBER = 4
@@ -15,4 +14,5 @@ module Constants
15
14
  LENGTH_RANGE = (3..20).freeze
16
15
  RANGE = (1..6).freeze
17
16
  NUMBER_OF_DIGITS = 4
17
+ PATH = './data/statistic.yml'
18
18
  end
@@ -1,111 +1,119 @@
1
1
  # frozen_string_literal: true
2
2
 
3
-
4
3
  module Codebreaker
5
4
  class Game < BaseClass
6
- attr_accessor :user_hints
7
- attr_reader :secret_code, :total_attempts, :used_attempts, :level, :errors
5
+ attr_reader :secret_code, :total_attempts, :used_attempts, :total_hints, :used_hints, :stats, :level
8
6
 
9
7
  def initialize
10
- @errors = []
11
- @secret_code = generate_code
12
8
  super()
9
+ @secret_code = generate_code
10
+ @stat = Statistic.new
11
+ end
12
+
13
+ def decrease_attempts
14
+ return secret_code && 'lose' if @used_attempts.zero?
15
+
16
+ @used_attempts -= 1
17
+ end
18
+
19
+ def save_stats
20
+ hash = {
21
+ user_name: @player_name,
22
+ difficulty: level,
23
+ attempts_total: total_attempts,
24
+ attempts_used: used_attempts,
25
+ hints_total: total_hints,
26
+ hints_used: used_hints
27
+ }
28
+ @stat.collect_statistic(hash)
29
+ end
30
+
31
+ def load_stats
32
+ @stat.show_statistic
13
33
  end
14
34
 
15
35
  def create_settings(name, level)
16
36
  player_name(name)
17
37
  create_level(level)
18
- show_errors
38
+
39
+ show_errors unless valid?
19
40
  end
20
41
 
21
42
  def player_name(name)
22
- @player_name = User.new(name).name
43
+ user = User.new(name)
44
+ return @player_name = user.name if user.valid?
45
+
46
+ errors << user.errors
23
47
  end
24
48
 
25
49
  def accept_level(level)
26
- level = level.upcase
27
- Object.const_get "Constants::#{level}"
28
- rescue StandardError
29
- @errors << 'entered level is not present'
30
- nil
50
+ current_level = Constants::LEVELS[level.to_sym]
51
+ handle_errors('entered level is not present') unless current_level
52
+ current_level
31
53
  end
32
54
 
33
55
  def create_level(level)
34
56
  choice_level = accept_level(level)
35
57
  return if choice_level.nil?
36
- return unless @level.nil?
37
58
 
59
+ add_level(choice_level)
60
+ end
61
+
62
+ def difficulties
63
+ Constants::LEVELS.keys
64
+ end
65
+
66
+ def add_level(choice_level)
38
67
  @level = level
39
- @user_hints = choice_level[:hints]
68
+ @used_hints = choice_level[:hints]
69
+ @total_hints = choice_level[:hints]
40
70
  @total_attempts = choice_level[:attempts]
41
71
  @used_attempts = choice_level[:attempts]
42
72
  end
43
73
 
44
74
  def check_guess(numbers)
45
- return @errors unless guess_valid?(numbers)
75
+ return show_errors unless guess_valid?(numbers)
46
76
 
47
- decrease_attempts
48
77
  array_choose_numbers = numbers.to_s.each_char.map(&:to_i)
49
78
  return win if secret_code == array_choose_numbers
50
79
 
51
- result = []
52
- codebreaker_result(array_choose_numbers, result)
53
- result.join
80
+ decrease_attempts
81
+ codebreaker_result(array_choose_numbers)
54
82
  end
55
83
 
56
84
  def use_hint
57
- return 'Hints are over' if @user_hints.zero?
85
+ return 'Hints are over' if @used_hints.zero?
58
86
 
59
- @user_hints -= 1
87
+ @used_hints -= 1
60
88
  secret_code.sample
61
89
  end
62
90
 
63
- def save_statistic
64
- stats = {
65
- user_name: @player_name,
66
- game_status: 'WIN',
67
- difficulty: level,
68
- attempts_total: total_attempts,
69
- attempts_used: used_attempts,
70
- hints_total: user_hints
71
- }
72
-
73
- File.open('./data/statistic.yml', 'a') { |f| f.write YAML.dump(stats.flatten) }
91
+ def win
92
+ "#{Constants::PLUS * Constants::WIN_NUMBER}(win)"
74
93
  end
75
94
 
76
95
  private
77
96
 
78
- def guess_valid?(match_code)
79
- @errors << 'match_code not number' unless match_code.is_a?(Numeric)
80
-
81
- input_data = match_code.to_s
82
- @errors << 'invalid_input_data' unless input_data =~ Constants::DESIRED_NUMBER
83
-
84
- valid?
85
- end
86
-
87
97
  def generate_code
88
98
  Array.new(Constants::NUMBER_OF_DIGITS) { rand Constants::RANGE }
89
99
  end
90
100
 
91
- def win
92
- "#{Constants::PLUS * Constants::WIN_NUMBER}(win)"
93
- end
94
-
95
- def codebreaker_result(array_choose_numbers, result)
101
+ def codebreaker_result(array_choose_numbers)
102
+ full_match = []
96
103
  array_choose_numbers.each_with_index do |code, index|
97
104
  next unless code == secret_code[index]
98
105
 
99
- result << Constants::PLUS
106
+ full_match << code
100
107
  array_choose_numbers[index] = nil
101
108
  end
102
- array_choose_numbers.compact.uniq.each { |number| result << Constants::MINUS if secret_code.include? number }
109
+ partial_match = array_choose_numbers.compact.uniq.select { |number| secret_code.include? number }
110
+ partial_match = partial_match.reject { |number| full_match.include? number }
111
+ create_result(full_match, partial_match)
103
112
  end
104
113
 
105
- def decrease_attempts
106
- return secret_code && 'lose' if @used_attempts.zero?
107
-
108
- @used_attempts -= 1
114
+ def create_result(full_match, partial_match)
115
+ result = full_match.map { Constants::PLUS } + partial_match.map { Constants::MINUS }
116
+ result.join
109
117
  end
110
118
  end
111
119
  end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Codebreaker
4
+ class Statistic
5
+ def collect_statistic(hash)
6
+ @stat = [{
7
+ user_name: hash[:user_name],
8
+ difficulty: hash[:difficulty],
9
+ attempts_total: hash[:attempts_total],
10
+ attempts_used: hash[:attempts_used],
11
+ hints_total: hash[:hints_total],
12
+ hints_used: hash[:hints_used]
13
+ }]
14
+ save_statistic
15
+ end
16
+
17
+ def show_statistic
18
+ @items = YAML.load_file(Constants::PATH)
19
+ @items.sort_by! { |game| [game[:difficulty], game[:attempts_used], game[:hints_used]] }
20
+ @items.each_with_index.map do |stat, index|
21
+ [index.next, stat[:user_name], stat[:difficulty], stat[:attempts_total],
22
+ stat[:attempts_used], stat[:hints_total], stat[:hints_used]]
23
+ end
24
+ end
25
+
26
+ def save_statistic
27
+ yaml_data = YAML.load_file(Constants::PATH)
28
+ yaml_data = [] if yaml_data.nil?
29
+ yaml_data << @stat
30
+ File.open(Constants::PATH, 'r+') { |file| file.write YAML.dump(yaml_data.flatten) }
31
+ end
32
+ end
33
+ end
File without changes
@@ -2,22 +2,12 @@
2
2
 
3
3
  module Codebreaker
4
4
  class User < BaseClass
5
- attr_accessor :errors
6
5
  attr_reader :name
7
6
 
8
7
  def initialize(player_name)
9
- @errors = []
10
- validation_name(player_name)
11
- @errors.empty? ? @name = player_name : show_errors
12
8
  super()
13
- end
14
-
15
- def validation_name(player_name)
16
- if player_name.is_a?(String)
17
- @errors << 'error min length or max length' unless Constants::LENGTH_RANGE.include?(player_name.length)
18
- else
19
- @errors << 'name is not string'
20
- end
9
+ validation_name(player_name)
10
+ @name = player_name if valid?
21
11
  end
22
12
  end
23
13
  end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Codebreaker
4
+ module Validator
5
+ def valid?
6
+ errors.empty?
7
+ end
8
+
9
+ private
10
+
11
+ def guess_valid?(match_code)
12
+ handle_errors('match code not number') unless match_code.is_a?(Numeric)
13
+
14
+ input_data = match_code.to_s
15
+ handle_errors('invalid_input_data') unless input_data =~ Constants::DESIRED_NUMBER
16
+
17
+ valid?
18
+ end
19
+
20
+ def validation_name(player_name)
21
+ if player_name.is_a?(String)
22
+ errors << 'error min length or max length' unless Constants::LENGTH_RANGE.include?(player_name.length)
23
+ else
24
+ errors << 'name is not string'
25
+ end
26
+ end
27
+ end
28
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Codebreaker
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.6'
5
5
  end
data/lib/codebreaker.rb CHANGED
@@ -6,4 +6,6 @@ module Codebreaker
6
6
  require 'codebreaker/base_class'
7
7
  require 'codebreaker/game'
8
8
  require 'codebreaker/user'
9
+ require 'codebreaker/validation'
10
+ require 'codebreaker/statistic'
9
11
  end
data/s ADDED
@@ -0,0 +1,14 @@
1
+
2
+ From: /home/bo/rubypr/codebreaker/lib/codebreaker/console.rb:95 Console#game_process:
3
+
4
+ 91: def game_process
5
+ 92: if !game.used_attempts.nil? && !game.used_attempts.zero?
6
+ 93: game_actions
7
+ 94: else
8
+ => 95: binding.pry
9
+ 96: p 'attempts finished'
10
+ 97: lose
11
+ 98: new_process
12
+ 99: end
13
+ 100: end
14
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codebreaker_bo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oladko Bohdan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-24 00:00:00.000000000 Z
11
+ date: 2022-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -159,10 +159,6 @@ extensions: []
159
159
  extra_rdoc_files: []
160
160
  files:
161
161
  - ".idea/.gitignore"
162
- - ".idea/codebreaker.iml"
163
- - ".idea/misc.xml"
164
- - ".idea/modules.xml"
165
- - ".idea/vcs.xml"
166
162
  - ".rspec"
167
163
  - ".rubocop.yml"
168
164
  - CHANGELOG.md
@@ -172,14 +168,20 @@ files:
172
168
  - LICENSE.txt
173
169
  - README.md
174
170
  - Rakefile
171
+ - data/statistic.yml
175
172
  - lib/codebreaker.rb
176
173
  - lib/codebreaker/base_class.rb
174
+ - lib/codebreaker/config.rb
177
175
  - lib/codebreaker/console.rb
176
+ - lib/codebreaker/const.rb
178
177
  - lib/codebreaker/constant.rb
179
178
  - lib/codebreaker/game.rb
180
- - lib/codebreaker/statistic.yml
179
+ - lib/codebreaker/statistic.rb
180
+ - lib/codebreaker/test_console.rb
181
181
  - lib/codebreaker/user.rb
182
+ - lib/codebreaker/validation.rb
182
183
  - lib/codebreaker/version.rb
184
+ - s
183
185
  - sig/codebreaker.rbs
184
186
  homepage: https://github.com/bogdansev1/codebreaker_gem
185
187
  licenses:
@@ -1,86 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="ModuleRunConfigurationManager">
4
- <shared />
5
- </component>
6
- <component name="NewModuleRootManager">
7
- <content url="file://$MODULE_DIR$">
8
- <sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
9
- <sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
10
- <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
11
- </content>
12
- <orderEntry type="inheritedJdk" />
13
- <orderEntry type="sourceFolder" forTests="false" />
14
- <orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, RVM: ruby-3.1.0) [gem]" level="application" />
15
- <orderEntry type="library" scope="PROVIDED" name="bundler (v2.3.9, RVM: ruby-3.1.0) [gem]" level="application" />
16
- <orderEntry type="library" scope="PROVIDED" name="coderay (v1.1.3, RVM: ruby-3.1.0) [gem]" level="application" />
17
- <orderEntry type="library" scope="PROVIDED" name="colorize (v0.8.1, RVM: ruby-3.1.0) [gem]" level="application" />
18
- <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.5.0, RVM: ruby-3.1.0) [gem]" level="application" />
19
- <orderEntry type="library" scope="PROVIDED" name="docile (v1.4.0, RVM: ruby-3.1.0) [gem]" level="application" />
20
- <orderEntry type="library" scope="PROVIDED" name="fasterer (v0.9.0, RVM: ruby-3.1.0) [gem]" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="json (v2.6.1, RVM: ruby-3.1.0) [gem]" level="application" />
22
- <orderEntry type="library" scope="PROVIDED" name="lefthook (v0.7.7, RVM: ruby-3.1.0) [gem]" level="application" />
23
- <orderEntry type="library" scope="PROVIDED" name="method_source (v1.0.0, RVM: ruby-3.1.0) [gem]" level="application" />
24
- <orderEntry type="library" scope="PROVIDED" name="parallel (v1.21.0, RVM: ruby-3.1.0) [gem]" level="application" />
25
- <orderEntry type="library" scope="PROVIDED" name="parser (v3.1.0.0, RVM: ruby-3.1.0) [gem]" level="application" />
26
- <orderEntry type="library" scope="PROVIDED" name="pry (v0.14.1, RVM: ruby-3.1.0) [gem]" level="application" />
27
- <orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, RVM: ruby-3.1.0) [gem]" level="application" />
28
- <orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, RVM: ruby-3.1.0) [gem]" level="application" />
29
- <orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.2.1, RVM: ruby-3.1.0) [gem]" level="application" />
30
- <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, RVM: ruby-3.1.0) [gem]" level="application" />
31
- <orderEntry type="library" scope="PROVIDED" name="rspec (v3.11.0, RVM: ruby-3.1.0) [gem]" level="application" />
32
- <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.11.0, RVM: ruby-3.1.0) [gem]" level="application" />
33
- <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.11.0, RVM: ruby-3.1.0) [gem]" level="application" />
34
- <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.11.0, RVM: ruby-3.1.0) [gem]" level="application" />
35
- <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.11.0, RVM: ruby-3.1.0) [gem]" level="application" />
36
- <orderEntry type="library" scope="PROVIDED" name="rubocop (v1.25.1, RVM: ruby-3.1.0) [gem]" level="application" />
37
- <orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.15.2, RVM: ruby-3.1.0) [gem]" level="application" />
38
- <orderEntry type="library" scope="PROVIDED" name="rubocop-rspec (v2.9.0, RVM: ruby-3.1.0) [gem]" level="application" />
39
- <orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, RVM: ruby-3.1.0) [gem]" level="application" />
40
- <orderEntry type="library" scope="PROVIDED" name="ruby_parser (v3.18.1, RVM: ruby-3.1.0) [gem]" level="application" />
41
- <orderEntry type="library" scope="PROVIDED" name="sexp_processor (v4.16.0, RVM: ruby-3.1.0) [gem]" level="application" />
42
- <orderEntry type="library" scope="PROVIDED" name="simplecov (v0.21.2, RVM: ruby-3.1.0) [gem]" level="application" />
43
- <orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.12.3, RVM: ruby-3.1.0) [gem]" level="application" />
44
- <orderEntry type="library" scope="PROVIDED" name="simplecov_json_formatter (v0.1.4, RVM: ruby-3.1.0) [gem]" level="application" />
45
- <orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.1.0, RVM: ruby-3.1.0) [gem]" level="application" />
46
- </component>
47
- <component name="RakeTasksCache">
48
- <option name="myRootTask">
49
- <RakeTaskImpl id="rake">
50
- <subtasks>
51
- <RakeTaskImpl description="Build codebreaker_bo-0.1.0.gem into the pkg directory" fullCommand="build" id="build" />
52
- <RakeTaskImpl id="build">
53
- <subtasks>
54
- <RakeTaskImpl description="Generate SHA512 checksum if codebreaker_bo-0.1.0.gem into the checksums directory" fullCommand="build:checksum" id="checksum" />
55
- </subtasks>
56
- </RakeTaskImpl>
57
- <RakeTaskImpl description="Remove any temporary products" fullCommand="clean" id="clean" />
58
- <RakeTaskImpl description="Remove any generated files" fullCommand="clobber" id="clobber" />
59
- <RakeTaskImpl description="Build and install codebreaker_bo-0.1.0.gem into system gems" fullCommand="install" id="install" />
60
- <RakeTaskImpl id="install">
61
- <subtasks>
62
- <RakeTaskImpl description="Build and install codebreaker_bo-0.1.0.gem into system gems without network access" fullCommand="install:local" id="local" />
63
- </subtasks>
64
- </RakeTaskImpl>
65
- <RakeTaskImpl description="Create tag v0.1.0 and build and push codebreaker_bo-0.1.0.gem to rubygems.org" fullCommand="release[remote]" id="release[remote]" />
66
- <RakeTaskImpl description="Run RuboCop" fullCommand="rubocop" id="rubocop" />
67
- <RakeTaskImpl id="rubocop">
68
- <subtasks>
69
- <RakeTaskImpl description="Auto-correct RuboCop offenses" fullCommand="rubocop:auto_correct" id="auto_correct" />
70
- </subtasks>
71
- </RakeTaskImpl>
72
- <RakeTaskImpl description="Run RSpec code examples" fullCommand="spec" id="spec" />
73
- <RakeTaskImpl description="" fullCommand="default" id="default" />
74
- <RakeTaskImpl description="" fullCommand="release" id="release" />
75
- <RakeTaskImpl id="release">
76
- <subtasks>
77
- <RakeTaskImpl description="" fullCommand="release:guard_clean" id="guard_clean" />
78
- <RakeTaskImpl description="" fullCommand="release:rubygem_push" id="rubygem_push" />
79
- <RakeTaskImpl description="" fullCommand="release:source_control_push" id="source_control_push" />
80
- </subtasks>
81
- </RakeTaskImpl>
82
- </subtasks>
83
- </RakeTaskImpl>
84
- </option>
85
- </component>
86
- </module>
data/.idea/misc.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-3.1.0" project-jdk-type="RUBY_SDK" />
4
- </project>
data/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/codebreaker.iml" filepath="$PROJECT_DIR$/.idea/codebreaker.iml" />
6
- </modules>
7
- </component>
8
- </project>
data/.idea/vcs.xml DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- <mapping directory="$PROJECT_DIR$/codebreaker" vcs="Git" />
6
- </component>
7
- </project>