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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -2
  3. data/Gemfile +1 -0
  4. data/Gemfile.lock +3 -1
  5. data/README.md +5 -2
  6. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef2e375c5c9847d6675e2e1513e061a6c9906c4a
4
- data.tar.gz: 24b7f3972725a11e43d2a673790355c72c7233c9
3
+ metadata.gz: 2982c7371e2677ba0f043ca9492ff0c984258d7b
4
+ data.tar.gz: ab90ccd8c99e5fa88d54e83fe325bc1e45228606
5
5
  SHA512:
6
- metadata.gz: 5464e0d9fc8353bb8ae5ec3824dee4317b5bb4d2185d17601014d9b27baa48a5502dc3ce6f8558d2291b3f7f1e730298905a1a7b29a6e9c2c6bf54ca82292407
7
- data.tar.gz: f850eff4fbc9629d58082b056d4cc00cc89fc77c9575e484e3848d6710bedabab725b99cf3e7a70200ceff3557b8c55ab765faea7a6a0b64f8b0598a25af7fb9
6
+ metadata.gz: 06b201fc58f7656dac8e3d8ad38ab329e5e8fcaf93f7942fad6bb2926c0d02eb281bf51f03fd4c31db63ebd78309c3cb9751e981fc6bb22a2478c29647dffbe3
7
+ data.tar.gz: 8430a56ff76ec850c0c89b3a6d708b603545efe76a3c382f1414af41051bc4cc129fc22a88b97f47b204eeec7d572103dea567fc5beea289de9012e04ecb8199
data/.travis.yml CHANGED
@@ -6,10 +6,10 @@ rvm:
6
6
  - 2.2.3
7
7
  - 2.2.0
8
8
  install:
9
- - "travis_retry bin/setup"
9
+ - bundle
10
10
 
11
11
  script:
12
- - "bundle exec rake"
12
+ - bundle exec rake
13
13
 
14
14
  branches:
15
15
  only:
data/Gemfile CHANGED
@@ -2,4 +2,5 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
+ gem 'rake'
5
6
  gem 'minitest'
data/Gemfile.lock CHANGED
@@ -1,12 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- danno_scrabble (0.0.4)
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
+ [![Build Status](https://travis-ci.org/Incredible0n3/scrabble.svg?branch=master)](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.4/bin/scrabble {'scrabble'}` # if installed via `gem install`
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.4` then `rake` # if installed via `gem install`
35
+ * `cd ~/.rvm/gems/ruby-2.2.3/gems/danno_scrabble_0.0.5` then `rake` # if installed via `gem install`
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danno_scrabble
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danial Oberg