codebracker_simb 0.9.5 → 1.0.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: 64f94b476fc88d8a0c927de3fa6f979dfd92869d9859b7f714f1431127a7b4f7
4
- data.tar.gz: 1214602a28fedd2ea7c741f917f5f4b13fd0780eb357eca57b77ce29e0888e7a
3
+ metadata.gz: 3f0c77328eba561d7ca6a27a11678ff3b3703f2a8d50dc121ed85259f08d2441
4
+ data.tar.gz: 9fb092bafca3b72d6c17308b29cb80e25bab5cd16b6f7442a6ecf84d873e9e54
5
5
  SHA512:
6
- metadata.gz: a599bc7ae932096174fb7fc9231e96208a450334974fe270a084fb8c0449037c304c66fd46b4a3dffe9f1a9b524c55140da6e4fc1865de0989ab70f7390bc846
7
- data.tar.gz: 4f0901570d10b53d620ed2abbd98dbcdd2d3b6b44432681378a11164f7ddcc7f37c61f97bad2ffc4a45c94f2b963231ea78651dd148c4be7a22652244a11637e
6
+ metadata.gz: c8e2449ec4e34808d4910ee445403425639fa98ecb561b6c695e8058556e2b370bf07ad9a297c8b3131309280255452b8cda8f9012737b46d6196a8703b8ab6a
7
+ data.tar.gz: 980ff47c9245c17c6fff1d951cf51942083e88a404c310ae610cdff067ac288275f148505656a3ecd163e72e9b2c5839923ba6b5373ad0a5aa2b0b005e79ebee
@@ -1,9 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative './checker'
4
- require 'rspec'
5
- require 'pry'
6
- require 'sqlite3'
7
4
 
8
5
  module CodebrackerSimb
9
6
  class Game
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CodebrackerSimb
4
- VERSION = '0.9.5'
4
+ VERSION = '1.0.0'
5
5
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class CodeError < StandardError
4
- def initialize(msg = "\nCode must include only four digits from 1 to 6\n\n")
4
+ def initialize(msg = "Code must include only four digits from 1 to 6")
5
5
  super
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ComplexityError < StandardError
4
- def initialize(msg = "\nIt could be easy, medium or hard!\n\n")
4
+ def initialize(msg = "It could be easy, medium or hard!")
5
5
  super
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class IntroError < StandardError
4
- def initialize(msg = "\nIt could be start, rules, stats or exit!\n\n")
4
+ def initialize(msg = "It could be start, rules, stats or exit!")
5
5
  super
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class NameError < StandardError
4
- def initialize(msg = "\nName should be longer than 3 chars and shorter than 20 chars!\n\n")
4
+ def initialize(msg = "Name should be longer than 3 chars and shorter than 20 chars!")
5
5
  super
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class NoHintsError < StandardError
4
- def initialize(msg = "\nYou used all your hints!\n\n")
4
+ def initialize(msg = "You used all your hints!")
5
5
  super
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codebracker_simb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - max
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-08 00:00:00.000000000 Z
11
+ date: 2022-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec