module Humongous

Constants

VERSION

Public Class Methods

author() click to toggle source
# File lib/humongous.rb, line 37
def self.author
  "Bagwan Pankaj"
end
description() click to toggle source
# File lib/humongous.rb, line 21
def self.description
  %Q{
    Humongous: A Ruby way to browse and maintain mongo instance. Using HTML5.
    This is beta version, So there is long way to go, but still you can enjoy its
    simplistic design.
  }
end
root() click to toggle source
# File lib/humongous.rb, line 12
def self.root
  File.dirname(File.expand_path('..', __FILE__))
end
run!() click to toggle source
# File lib/humongous.rb, line 41
def self.run!
  puts "#################################################"
  puts "You are using Humongous(#{Humongous.version})"
  puts "Welcome aboard on Humongous. Enjoy!"
  puts "#################################################"

  Application.run!
end
summary() click to toggle source
# File lib/humongous.rb, line 29
def self.summary
  %Q{An standalone Mongo Browser for Ruby. Just run and forget.}
end
version() click to toggle source

gem version

# File lib/humongous.rb, line 17
def self.version #:nodoc
  Humongous::VERSION
end