mega_lotto 0.5 → 0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5b593729840828ec6ff40502d73afe2fa95ec81b
4
- data.tar.gz: db37ec30f1b7335bd0c8de7e612c0b4f81775e15
3
+ metadata.gz: b627b3122e8d19c9bc678620415330d1a7988bbc
4
+ data.tar.gz: 6ec5c987019dc5d344a0e482068a58d1ecf0a1de
5
5
  SHA512:
6
- metadata.gz: 390fd82a24012147977c4c974a343b487452d52dc74f9fbdfac55c610e12188d8a0651579f102a3e04393a2a103e46914bf1df539db58b71ce67eec02e8699af
7
- data.tar.gz: f6a701c3a89567623fcf3ed6c43701846add2a90a59791d2a21878fe782f1d441bb26b159f2c5547ecc9e0302f026d73f5fb93731c72dbe1ba45f6ac5103b0bd
6
+ metadata.gz: 967a49dbd39d2677a24b490d16b48ce7bfabdd80ca3b6605fd4383eb4957077b266a9d29ac3b0a49c425bcce98af5c104de3440a1830ae58e016e388e28ea5b4
7
+ data.tar.gz: c28a0d33f0649283d221990b47a107be15c2a42edd6ca5ec90f759e98460076ca44bcbc6c16a9f9295247844c2bde00bb5d66bb46cc4f1dc74738085ecc0d332
data/README.md CHANGED
@@ -18,8 +18,8 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
- ``ruby
22
- MegaLotto::Drawing.new.draw # => [23, 2, 12, 4, 3]
21
+ ```ruby
22
+ MegaLotto::Drawing.new.draw # => [23, 2, 12, 4, 3, 26]
23
23
  ```
24
24
 
25
25
  ## Contributing
@@ -1,7 +1,7 @@
1
1
  module MegaLotto
2
2
  class Drawing
3
3
  def draw
4
- 5.times.map { single_draw }
4
+ 6.times.map { single_draw }
5
5
  end
6
6
 
7
7
  private
@@ -1,3 +1,3 @@
1
1
  module MegaLotto
2
- VERSION = "0.5"
2
+ VERSION = "0.6"
3
3
  end
@@ -9,8 +9,8 @@ module MegaLotto
9
9
  expect(drawing).to be_a(Array)
10
10
  end
11
11
 
12
- it "returns an Array with 5 elements" do
13
- expect(drawing.size).to eq(5)
12
+ it "returns an Array with 6 elements" do
13
+ expect(drawing.size).to eq(6)
14
14
  end
15
15
 
16
16
  it "each element is an Integer" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mega_lotto
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.5'
4
+ version: '0.6'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Hilkert