burger_game 1.1.1 → 1.1.2

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: f9d711569adebde4fbd1ae27a861cb160378b45658f375a5fbdded774ad289a4
4
- data.tar.gz: dcba13dc529790b559b5ca546929b31bedacf7f8ec9ea5ce35b73c26e6691280
3
+ metadata.gz: 3ff046bbde51f8fb644e953a15408db621da8f8069a4c150b0dcf27b3ae990c8
4
+ data.tar.gz: b10a17bee2c77d1aa3f2bb05a9f0cc7cfb6e5d5e978d77ce35c441f3a8f10287
5
5
  SHA512:
6
- metadata.gz: e3d467517cc36dedf39ab549d58f1b0b8857815d705e1dc988f767449dea1d53cd0d6173ab85ed7196d0a65a7d6b2c1e1dcc30bb5e97a5a581aa0bedf2a70bf4
7
- data.tar.gz: cea4ab9615652a2e80606d57b2eed9a87530c828f64e8048306c84a647779b557a1f3ff0e5c027714c386a3a9aa9cf11dc7a325e11c4333dfca97263e6c79a09
6
+ metadata.gz: 31f617550c7307b0efd7cc27a4c40c65dbedfe7c877f3d0cc0faeb828dd58433440da3b19d19087f628f2f53f4c285500b6916337f9e17d667021ea8d6be9e15
7
+ data.tar.gz: e73f18dbebbae5d4f2f0fa954f95318f9b6660dded8ea2ad34f418c60c27a801e8c27228e902e98ad95458fca78329b8b1f303e0a66c34835624e98f76e4d6b2
data/README.md CHANGED
@@ -595,7 +595,7 @@ Another way to install this app is by using the bash script.
595
595
 
596
596
  **Options** available:
597
597
 
598
- Usage (bash script - install game): ./install.sh [*OPTION*]
598
+ Usage (bash script - install game): ./install.sh
599
599
 
600
600
  Usage (bash script - run game): ./burger_game.sh [*OPTION*]
601
601
 
data/burger_game.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "burger_game"
3
- s.version = "1.1.1"
3
+ s.version = "1.1.2"
4
4
  s.summary = "A Ruby Burger Game"
5
5
  s.description = "A simple text-based Ruby terminal game, that simulates a burger shop, where you need to build the meal for the customers with different requests and preferences."
6
6
  s.authors = ["Jessica Gozali"]
data/lib/burger_game.rb CHANGED
@@ -23,7 +23,7 @@ class BurgerGame
23
23
 
24
24
  # Handle command line argument
25
25
  opt_parser = OptionParser.new do |opt|
26
- opt.banner = "Usage (Gem's executable): start_burger_game [OPTION]\nOR\nUsage (bash script - install game): install.sh [OPTION]\nUsage (bash script - run game): burger_game.sh [OPTION]\n\n"
26
+ opt.banner = "Usage (Gem's executable): start_burger_game [OPTION]\nOR\nUsage (bash script - install game): install.sh\nUsage (bash script - run game): burger_game.sh [OPTION]\n\n"
27
27
 
28
28
  opt.on("-h", "--help", "Print this Help menu for Burger Game.") do |arg|
29
29
  puts opt
@@ -110,7 +110,7 @@ class ScreenMessage
110
110
 
111
111
  def display_win
112
112
  title = " YOU WIN "
113
- msg = "Ruby Burger has reached its goal!\n\nAll thanks to you and your brilliant burger stacking skill.\nNow is time to celebrate and give yourself a reward..." + "\n\n"
113
+ msg = "Ruby Burger has reached its goal!\n\nAll thanks to you and your brilliant burger stacking skill.\nNow is the time to celebrate and give yourself a reward..." + "\n\n"
114
114
  msg += "A burger... and chips!" + "\n\n"
115
115
 
116
116
  msg += " |\\ /| /|_/|" + "\n"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: burger_game
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jessica Gozali