danno_scrabble 0.0.4 → 0.0.5
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/.travis.yml +2 -2
- data/Gemfile +1 -0
- data/Gemfile.lock +3 -1
- data/README.md +5 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2982c7371e2677ba0f043ca9492ff0c984258d7b
|
4
|
+
data.tar.gz: ab90ccd8c99e5fa88d54e83fe325bc1e45228606
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06b201fc58f7656dac8e3d8ad38ab329e5e8fcaf93f7942fad6bb2926c0d02eb281bf51f03fd4c31db63ebd78309c3cb9751e981fc6bb22a2478c29647dffbe3
|
7
|
+
data.tar.gz: 8430a56ff76ec850c0c89b3a6d708b603545efe76a3c382f1414af41051bc4cc129fc22a88b97f47b204eeec7d572103dea567fc5beea289de9012e04ecb8199
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
danno_scrabble (0.0.
|
4
|
+
danno_scrabble (0.0.5)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
9
|
minitest (5.9.0)
|
10
|
+
rake (11.1.2)
|
10
11
|
|
11
12
|
PLATFORMS
|
12
13
|
ruby
|
@@ -14,6 +15,7 @@ PLATFORMS
|
|
14
15
|
DEPENDENCIES
|
15
16
|
danno_scrabble!
|
16
17
|
minitest
|
18
|
+
rake
|
17
19
|
|
18
20
|
BUNDLED WITH
|
19
21
|
1.10.6
|
data/README.md
CHANGED
@@ -4,6 +4,9 @@
|
|
4
4
|
| |_| | | |_| |
|
5
5
|
|____/[] \ ___ /[]
|
6
6
|
|
7
|
+
|
8
|
+
[](https://travis-ci.org/Incredible0n3/scrabble)
|
9
|
+
|
7
10
|
Scrabble has long been used to play on words. For example, you have a set of letters, these letters then make various
|
8
11
|
combinations of words. In the rules of scrabble those various combinations of words are compared against a valid scrabble
|
9
12
|
dictionary to see if it is a valid answer. This provides a list of all possible valid answers based on the set of letters.
|
@@ -24,9 +27,9 @@ dictionary to see if it is a valid answer. This provides a list of all possible
|
|
24
27
|
# Using the Gem!
|
25
28
|
|
26
29
|
* `ruby -Ilib ./bin/scrabble {'scrabble'}` or `ruby -Ilib ./bin/scrabble {'asdfjkl'}` # if cloned
|
27
|
-
* `ruby -Ilib ~/.rvm/gems/ruby-2.2.3/gems/danno_scrabble_0.0.
|
30
|
+
* `ruby -Ilib ~/.rvm/gems/ruby-2.2.3/gems/danno_scrabble_0.0.5/bin/scrabble {'scrabble'}` # if installed via `gem install`
|
28
31
|
|
29
32
|
# Testing the Gem!
|
30
33
|
|
31
34
|
* `rake` # if cloned
|
32
|
-
* `cd ~/.rvm/gems/ruby-2.2.3/gems/danno_scrabble_0.0.
|
35
|
+
* `cd ~/.rvm/gems/ruby-2.2.3/gems/danno_scrabble_0.0.5` then `rake` # if installed via `gem install`
|