tee_reverser 0.0.4 → 0.0.5

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.
@@ -28,5 +28,6 @@ module TeeReverser
28
28
  decisions = Reverser.new(goods.list, meal.recipehash)
29
29
  decisions.reverse
30
30
  decisions.choose
31
+ return "Bon appetit!"
31
32
  end
32
33
  end
@@ -30,6 +30,5 @@ class Reverser
30
30
  puts " "
31
31
  puts "The ingredients for #{@eat[-2][0]} are: #{ingredients2.join(", ")}."
32
32
  puts " "
33
- puts "Bon appetit!"
34
33
  end
35
34
  end
@@ -2,5 +2,5 @@
2
2
  # Copyright © 2013, stevenbxu
3
3
 
4
4
  module TeeReverser
5
- VERSION = "0.0.3"
5
+ VERSION = "0.0.5"
6
6
  end
data/lib/tee_reverser.rb CHANGED
@@ -10,6 +10,9 @@ require 'yummly'
10
10
  # contain the largest number of ingredients in your pantry -- thereby
11
11
  # saving you an average of four seconds of decision making every time!
12
12
 
13
+ # To run, require 'tee_reverser' and enter TeeReverser.execute in the command
14
+ # line.
15
+
13
16
  module TeeReverser
14
17
  require 'tee_reverser/reverser.rb'
15
18
  require 'tee_reverser/recipe_list.rb'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tee_reverser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -47,5 +47,5 @@ rubyforge_project:
47
47
  rubygems_version: 1.8.24
48
48
  signing_key:
49
49
  specification_version: 3
50
- summary: Basic functions finished
50
+ summary: Basic functions finished, initial tests completed.
51
51
  test_files: []