obfuscated_morse_code 0.2.1 → 0.2.2

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: e9b42f921cd6a139d073cdf1c7c1c4edcb669b14aea8bb11dd67c1a1db469d8e
4
- data.tar.gz: a483d88d5d9ac6cbb833acdc12a35469e90615055f501b3460981006d1eb8307
3
+ metadata.gz: 02f9cc8c3eb5d8ec96becb8201cd3a2574637f364c691085c1d23f0ef8487b81
4
+ data.tar.gz: 81d0ae19c4b4c812e4947107446467944716caf3f6236942d2d9e9b4f30a9d19
5
5
  SHA512:
6
- metadata.gz: 96f62467b2e8d0ddd6c8bf2c7791cb57d5b41beae158038fd3f4fac1c128d78c7a73040e49bf4d88964a54cf3c00824d144f2da9d53c492688a88faab203ac7f
7
- data.tar.gz: 5f83e9902925777115e7d32b6634dc1332f4ba722d9f48f322cbca8fd63ca044d6635c26d45e4528d5aa2ceccc0a707b74fb7c54f89cdc1caf2da7cf345bf51b
6
+ metadata.gz: 066406c9eef3c243a97d57c1d9e21ed32e5af2b35b7c908ad50d39d85ea56523b07d4f2e50b721da4dadf18c91339e43c22cba4e1d32560cf177e2eb63ba28bc
7
+ data.tar.gz: d936f6e428fc6665385eed2a4c522a5d12b36b8dc5dbb4fcefcbab3d993b7d7f6762932c054a3c0d55fc174afec97d7a69c69997760ecb55564bcd7abe32df1d
data/Gemfile.lock ADDED
@@ -0,0 +1,51 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ obfuscated_morse_code (0.2.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.0)
10
+ diff-lcs (1.3)
11
+ jaro_winkler (1.5.4)
12
+ parallel (1.19.1)
13
+ parser (2.6.5.0)
14
+ ast (~> 2.4.0)
15
+ rainbow (3.0.0)
16
+ rake (10.5.0)
17
+ rspec (3.9.0)
18
+ rspec-core (~> 3.9.0)
19
+ rspec-expectations (~> 3.9.0)
20
+ rspec-mocks (~> 3.9.0)
21
+ rspec-core (3.9.0)
22
+ rspec-support (~> 3.9.0)
23
+ rspec-expectations (3.9.0)
24
+ diff-lcs (>= 1.2.0, < 2.0)
25
+ rspec-support (~> 3.9.0)
26
+ rspec-mocks (3.9.0)
27
+ diff-lcs (>= 1.2.0, < 2.0)
28
+ rspec-support (~> 3.9.0)
29
+ rspec-support (3.9.0)
30
+ rubocop (0.77.0)
31
+ jaro_winkler (~> 1.5.1)
32
+ parallel (~> 1.10)
33
+ parser (>= 2.6)
34
+ rainbow (>= 2.2.2, < 4.0)
35
+ ruby-progressbar (~> 1.7)
36
+ unicode-display_width (>= 1.4.0, < 1.7)
37
+ ruby-progressbar (1.10.1)
38
+ unicode-display_width (1.6.0)
39
+
40
+ PLATFORMS
41
+ ruby
42
+
43
+ DEPENDENCIES
44
+ bundler (~> 1.16)
45
+ obfuscated_morse_code!
46
+ rake (~> 10.0)
47
+ rspec (~> 3.0)
48
+ rubocop (~> 0.77.0)
49
+
50
+ BUNDLED WITH
51
+ 1.16.6
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ObfuscatedMorseCode
4
- DASH_OBFUSCATION_DICTIONARY = %w[A B C D E].freeze
5
-
6
4
  class MorseCodeObfuscator
5
+ DASH_OBFUSCATION_DICTIONARY = %w[A B C D E].freeze
6
+
7
7
  attr_reader :morse_codes
8
8
 
9
9
  def initialize(morse_codes)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ObfuscatedMorseCode
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: obfuscated_morse_code
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Svoboda
@@ -77,6 +77,7 @@ files:
77
77
  - ".gitignore"
78
78
  - ".rspec"
79
79
  - Gemfile
80
+ - Gemfile.lock
80
81
  - LICENSE.txt
81
82
  - README.md
82
83
  - Rakefile