Module: Toolman

Defined in:
lib/toolman.rb,
lib/toolman/version.rb

Constant Summary collapse

VERSION =
"0.2.3"

Class Method Summary collapse

Class Method Details

.doneObject



15
16
17
# File 'lib/toolman.rb', line 15

def self.done
    puts "\n=============================\n   Done!\n   Every thing is good!\n=============================\n"
end

.newObject



7
8
9
# File 'lib/toolman.rb', line 7

def self.new
  ToolObject.new
end

.new_specialObject



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