burger_game 1.0.4 → 1.0.5

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
  SHA256:
3
- metadata.gz: fc43834396f60c40cffd14363e340d1a56886a3e947ad6b0ce8327765da81cc9
4
- data.tar.gz: 283ed5afe1a73ad9e88ee404bddda1a5fa2024c7c05a6a81b3065cbfcc62fb79
3
+ metadata.gz: 59cd110b5e43e21ecc05c0f1c07f990c278747381f5967ef8717326f431d9ace
4
+ data.tar.gz: c638bf3aba27410c8d1a2809c337e7204a84e240ffbb4c5dbb9cf353abca7140
5
5
  SHA512:
6
- metadata.gz: 4d2acaeef63213ce8c99ff41a9a266a072461899592af6c09e1d6f671d5202865d5e201c2f909486983bed60f413b502b1a7e4d81657ac089fdfcb3f82a5ceab
7
- data.tar.gz: 12493b20fe1ab4134df1691122aae603451202f3f9499720f052752b2bab607393831173ea2f3f53fab24ae4e901996d8a2af4cc63d3d81b9251e1eac44017f6
6
+ metadata.gz: 7b7e6ae32b380120058e8b3ed943287b14caf0f3b00344dfacd2338d88f2d629afc29e0440a88361a23aed97886fe502e9436b2949df9e9f1aab3649ffe84d11
7
+ data.tar.gz: bd2d8d2d7d7c3f4bab58e01fcee512bf92632080e30d414a75635691d54c0a2a43e1da6ceb5810e109550566837e8a9e956a3f27f6d12a6d679a41a10906a5a1
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.0.4"
3
+ s.version = "1.0.5"
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"]
@@ -5,7 +5,7 @@ class CustomerRequest
5
5
  # ERROR HANDLING for reading files
6
6
  begin
7
7
  # Read customer_request.JSON file
8
- customer_file = File.read('./lib/customer_request.json')
8
+ customer_file = File.read('customer_request.json')
9
9
  rescue Errno::ENOENT => e
10
10
  puts "Could not find customer_request.json file. Please put customer_request.json in the 'data' directory."
11
11
  puts e.message
@@ -18,7 +18,7 @@ class CustomerRequest
18
18
 
19
19
  begin
20
20
  # Read customer_response.JSON file
21
- response_file = File.read('./lib/customer_response.json')
21
+ response_file = File.read('customer_response.json')
22
22
  rescue Errno::ENOENT => e
23
23
  puts "Could not find customer_response.json file. Please put customer_response.json in the 'data' directory."
24
24
  puts e.message
data/lib/recipe.rb CHANGED
@@ -8,7 +8,7 @@ class Recipe
8
8
  # ERROR HANDLING for reading files
9
9
  begin
10
10
  # Read recipe.JSON file
11
- file = File.read('./lib/recipe.json')
11
+ file = File.read('recipe.json')
12
12
  rescue Errno::ENOENT => e
13
13
  puts "Could not find recipe.json file. Please put recipe.json in the 'data' directory."
14
14
  puts e.message
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.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jessica Gozali