wordl-solver 0.1.1 → 0.1.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 +4 -4
- data/VERSION +1 -1
- data/lib/wordl-solver.rb +1 -1
- data/wordl-solver.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ecf240e631447599031404b10f864303511856e3c2d49f2bd9d20297e109a50
|
|
4
|
+
data.tar.gz: 4be0ee26f1e2592aab9f0081c44d29790cb71348f9c9fd891535caaedd2bb5c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d4ee82f1b62e52d686337f108a98052ef843accdba05489156421894ed19b4537ae046c2b4a16ad97a932bbde9fbfde8d100ba29180c2ffc42df680708d1cd1
|
|
7
|
+
data.tar.gz: c28f7ae9d5eb2db447c4fc7bcc3504e59660f2073e1c951e51b7a831211a09ce5f2a3096f05676dcbd488ff08d02e46fd6c8ada0253b87b4ed0c9b3dacb05ebb
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/lib/wordl-solver.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require "csv"
|
|
2
2
|
require "fileutils"
|
|
3
3
|
|
|
4
|
-
FILE_PATH = "
|
|
4
|
+
FILE_PATH = "5_words.csv"
|
|
5
5
|
LETTER_WORDS = []
|
|
6
6
|
LETTER_FRENQUENCY = %w(e t a o i n s h r d l c u m f w y g p b v k j x q z)
|
|
7
7
|
INITIAL_POSITIONED_LETTER_MESSAGE = "enter in order the letters for which you know the position \n if you don't know the position press enter"
|
data/wordl-solver.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: wordl-solver 0.1.
|
|
5
|
+
# stub: wordl-solver 0.1.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "wordl-solver".freeze
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|