class JeytasGem

Public Instance Methods

dir() click to toggle source
# File lib/module.rb, line 9
def dir
  puts Dir.pwd
end
help() click to toggle source
# File lib/module.rb, line 6
def help
  puts "This is the Module Gem. You can find alot of useful thing in the @module class. "
end
ls() click to toggle source
# File lib/module.rb, line 12
def ls
  puts Dir.pwd
end
working?() click to toggle source
# File lib/module.rb, line 3
def working?
puts "YES"
end