card_nine 0.5.0 → 0.5.1
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/card_nine/cards/playing_card.rb +2 -1
- data/lib/card_nine/cards/simple_card.rb +1 -1
- data/lib/card_nine/dealer.rb +1 -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: 0e44ebfb47bb898a6da17933023b5c828c79bef8
|
|
4
|
+
data.tar.gz: 4510d3a7a56a91e9089044d81f01f9f4996d5a9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7c30fd41bee2615f58b4c3d11c1504ca73d91e7367228e0137632ebb8d8941a875786132f18fb0498fd8f44f92ab0a9a5b42e97168a2b0012e2c897f976825e
|
|
7
|
+
data.tar.gz: 00915ec32bfe7681c953d7dfaf2789acb403bf6315efc02d8ae4b2b40b6d1fc6909671fe0628112f00a3280728809a26f663ce9ebc670e09aebab3d285337d89
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.1
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
require 'card_nine/card'
|
|
2
|
+
require 'card_nine/deck'
|
|
2
3
|
|
|
3
4
|
module CardNine
|
|
4
5
|
module Cards
|
|
@@ -9,7 +10,7 @@ module CardNine
|
|
|
9
10
|
# @!method initialize(args = nil)
|
|
10
11
|
# will set the instance vars using the keys of args as a attribute name
|
|
11
12
|
# @param [Hash, Nil] args
|
|
12
|
-
include Card
|
|
13
|
+
include CardNine::Card
|
|
13
14
|
|
|
14
15
|
# ALL Suits of cards
|
|
15
16
|
SUITS = %w|Clubs Hearts Diamonds Spades|.freeze
|
data/lib/card_nine/dealer.rb
CHANGED