card_nine 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc6e81abfc7d2342293b27bd817dc6d3efd7dc6d
4
- data.tar.gz: 443536f808e04a8ee0e1b04eb30fe2468aa276cb
3
+ metadata.gz: 0e44ebfb47bb898a6da17933023b5c828c79bef8
4
+ data.tar.gz: 4510d3a7a56a91e9089044d81f01f9f4996d5a9c
5
5
  SHA512:
6
- metadata.gz: 841fa6dae3ce1dd5b2dfd0bbffb7ce6795691b1fdada683304590a136f3ef5505828e8ee07cc6a6a7b432e67316fc1bf791d8824073ee797146fe44a2ba08df3
7
- data.tar.gz: 53a22aadba21b045dc72073cc1bf851d6ec50d95165e3ab2c28b778ffe137b0669150e331930a55d097d4914224d73ee611da7be83fc2f503fab77c63bdaf581
6
+ metadata.gz: a7c30fd41bee2615f58b4c3d11c1504ca73d91e7367228e0137632ebb8d8941a875786132f18fb0498fd8f44f92ab0a9a5b42e97168a2b0012e2c897f976825e
7
+ data.tar.gz: 00915ec32bfe7681c953d7dfaf2789acb403bf6315efc02d8ae4b2b40b6d1fc6909671fe0628112f00a3280728809a26f663ce9ebc670e09aebab3d285337d89
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.0
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
@@ -5,7 +5,7 @@ module CardNine
5
5
  # @!method initialize(args = nil)
6
6
  # will set the instance vars using the keys of args as a attribute name
7
7
  # @param [Hash, Nil] args
8
- include Card
8
+ include CardNine::Card
9
9
  end
10
10
  end
11
11
  end
@@ -10,9 +10,8 @@ module CardNine
10
10
  end
11
11
 
12
12
  def deal(players)
13
- Table.new(deck.shuffle, players, locations, stages)
13
+ CardNine::Table.new(deck.shuffle, players, locations, stages)
14
14
  end
15
15
 
16
-
17
16
  end
18
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: card_nine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott M Parrish