haphazardly_gem 0.1.3 → 0.1.4

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
  SHA256:
3
- metadata.gz: 1149411e606cfcaa20b3447bdf616d4d9060ae874016f58f7362d26ffa0127fd
4
- data.tar.gz: 03bbb77df620b3e4501dadb33765a50a3540fed112d24d16c7d4890be8e99cc7
3
+ metadata.gz: e20c7238cb8177ebeabaa03275d94fec90ff0daa2aabc1f11bbec724bdfece25
4
+ data.tar.gz: 218a695f7ba9d430e0d4f35cc786b77891ab4defed9c2d52789a877ad3933065
5
5
  SHA512:
6
- metadata.gz: 9740dcfadbaa78a864009671f2bee31fe4f4f84bd30cc36d7bd61eeb5ed065f22ccb1ec3328c9a48ac325c0dbcd855c6200394d78b74bb89f7f9f5d6fae6edc6
7
- data.tar.gz: a8a043e0ce67e91cc90b66bf272d606db9efe448dbbd0bf382922fa3ea7a8be7f060d032c7d7407d5d34b5d46f4dab071b87480251143f6342a41712c363dae2
6
+ metadata.gz: 384ca71d41a4ed1b21462fb65db975563b9713df09959378639be9b984a98586ebe3926f0a338ff429e1e30ae90e532f260a82aff6890581e0dcb1a261992d56
7
+ data.tar.gz: 46cb281e6a79fe5e8707a4e34ad87422f298132ae55b5d659f768a19d84958360efc338bca5ca5a818fb83d6d244c1392b723857ba64796c387719ec7b98ff9f
data/CHANGELOG.md CHANGED
@@ -1,8 +1,9 @@
1
- ## [0.1.1] & [0.1.2] & [0.1.3] - 2022-07-12
1
+ ## [0.1.1] & [0.1.2] & [0.1.3] & [0.1.4] - 2022-07-12
2
2
 
3
3
  - removed extend feature which caused a crash.
4
4
  - bug fixes due to namespacing
5
5
  - Fixed logic error in lotto.draw
6
+ - possible fix to ci/cd
6
7
 
7
8
  ## [0.1.0] - 2022-07-11
8
9
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- haphazardly_gem (0.1.3)
4
+ haphazardly_gem (0.1.4)
5
5
  minitest (~> 5.0)
6
6
  rake (~> 13.0)
7
7
  rubocop (~> 1.21)
@@ -4,7 +4,7 @@ module HaphazardlyGem
4
4
  class Lotto
5
5
  def self.pick
6
6
  output = Array.new
7
- while output.size <= 6
7
+ while output.size <= 5
8
8
  number = rand(1..69)
9
9
  output.push(number) unless output.include? (number)
10
10
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HaphazardlyGem
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: haphazardly_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Rogers