Module: Toolman
- Defined in:
- lib/toolman.rb,
lib/toolman/version.rb
Defined Under Namespace
Classes: Color, ToolObject, ToolmanS
Constant Summary
collapse
- VERSION =
"0.2.1"
Class Method Summary
collapse
Class Method Details
.done ⇒ Object
12
13
14
|
# File 'lib/toolman.rb', line 12
def self.done
puts "\n=============================\n Done!\n Every thing is good!\n=============================\n"
end
|
.new ⇒ Object
4
5
6
|
# File 'lib/toolman.rb', line 4
def self.new
ToolObject.new
end
|
.new_special ⇒ Object
8
9
10
|
# File 'lib/toolman.rb', line 8
def self.new_special
ToolmanS.new
end
|
.putValue(data) ⇒ Object
24
25
26
27
28
|
# File 'lib/toolman.rb', line 24
def self.putValue(data)
puts "\n>>>>>>>>>>>>>>>>>Messange>>>>>>>>>>>>>>>>>"
puts "#{data}"
puts ">>>>>>>>>>>>>>>>>Messange>>>>>>>>>>>>>>>>>\n"
end
|
.testForNumber(beTest, testFor, say) ⇒ Object
16
17
18
19
20
21
22
|
# File 'lib/toolman.rb', line 16
def self.testForNumber(beTest,testFor,say)
if beTest == testFor
puts "\nDeBugMan Say : #{say}\n"
else
puts "\nDeBugMan Say :Error!\n"
end
end
|