Module: Toolman
- Defined in:
- lib/toolman.rb,
lib/toolman/version.rb
Constant Summary collapse
- VERSION =
"0.2.3"
Class Method Summary collapse
- .done ⇒ Object
- .new ⇒ Object
- .new_special ⇒ Object
- .putValue(data) ⇒ Object
- .testForNumber(beTest, testFor, say) ⇒ Object
Class Method Details
.done ⇒ Object
15 16 17 |
# File 'lib/toolman.rb', line 15 def self.done puts "\n=============================\n Done!\n Every thing is good!\n=============================\n" end |
.new ⇒ Object
7 8 9 |
# File 'lib/toolman.rb', line 7 def self.new ToolObject.new end |
.new_special ⇒ Object
11 12 13 |
# File 'lib/toolman.rb', line 11 def self.new_special ToolmanS.new end |
.putValue(data) ⇒ Object
27 28 29 30 31 |
# File 'lib/toolman.rb', line 27 def self.putValue(data) puts "\n>>>>>>>>>>>>>>>>>Messange>>>>>>>>>>>>>>>>>" puts "#{data}" puts ">>>>>>>>>>>>>>>>>Messange>>>>>>>>>>>>>>>>>\n" end |
.testForNumber(beTest, testFor, say) ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/toolman.rb', line 19 def self.testForNumber(beTest,testFor,say) if beTest == testFor puts "\nDeBugMan Say : #{say}\n" else puts "\nDeBugMan Say :Error!\n" end end |