game_gem 0.5.0 → 0.6.0

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: 8d36144a4c399e47df823642365013640d0c45060daae3d178da9dba097e3277
4
- data.tar.gz: 817dc3dd419effbf66f5fd7f1d332fbf64451bc0ef5c353811a5bf628c1a236b
3
+ metadata.gz: 6647c45b36c428e99b6a26c0cb95b688671fd00ba92ab3e009519d00d99bba89
4
+ data.tar.gz: da55ae83bfe5f550df694e6df7a43ea9f5e3097ac5cd19222540ef89b8a3525d
5
5
  SHA512:
6
- metadata.gz: 4cff0c1af82aefb090d71e950fb10e13702dadfb9bc0c6a4f11953630840b526a3810143f7e56426a2559db3aaae892aa021827ab369d33b8faad37ec8a7ed7b
7
- data.tar.gz: 9ed5d9b1fbd2037940136ab895f8803c4a6d499fbc6485d61bcddbf825d4707a9527206c5909ea535bedda79b0f76a32b6d27e8db660498c462b7e44ce69169c
6
+ metadata.gz: f5dc65a8c09e18f6ffece080965cb8db09d88ccde18c181a3d1c86ecfafc4e9d0d7df3689227525a4ac3155342fa07c4bef7094da93e1d27e104911e5c3e7f04
7
+ data.tar.gz: 6a61ecc689e5f4739e945d116bd6cfd4e7ffa42756a10cbf13857c7c2f612d3f6c6a3c6a262204664555e71265f1e25585c8120b0b6e3fa76c90769735d826e1
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- game_gem (0.5.0)
4
+ game_gem (0.6.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -24,7 +24,7 @@ Or install it yourself as:
24
24
 
25
25
  ## Usage
26
26
 
27
- Run $ .bin/run to run the app.
27
+ Enter `run` to run the app.
28
28
 
29
29
  Enter (1-30) to view game details at the main menu.
30
30
 
@@ -8,7 +8,7 @@ class Game
8
8
  end
9
9
 
10
10
  def self.mass_create(games)
11
- games.each { |game| @@all << Game.new(game) if !game[:name].empty? }
11
+ games.each { |game| @@all << Game.new(game) unless game[:name].empty? }
12
12
  end
13
13
 
14
14
  def self.all
@@ -81,7 +81,7 @@ class GameCli
81
81
  loop do
82
82
  input = get_input
83
83
  quit?(input) ? break : show_game(input)
84
- break if !continue?
84
+ break unless continue?
85
85
  end
86
86
  say_bye
87
87
  end
@@ -1,3 +1,3 @@
1
1
  module GameGem
2
- VERSION = "0.5.0"
2
+ VERSION = "0.6.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: game_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - "'Victoria Meng'"
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-20 00:00:00.000000000 Z
11
+ date: 2018-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler