Class: DBum::Main

Inherits:
Thor
  • Object
show all
Includes:
Helpers
Defined in:
lib/dbum/main.rb

Overview

DBum’s entrypoint.

Instance Method Summary collapse

Methods included from Helpers

#actions, #old_puts, #puts, #util

Instance Method Details

#artObject



24
25
26
27
28
29
# File 'lib/dbum/main.rb', line 24

def art
  puts
  puts ART
  puts
  return nil
end

#serverObject



58
59
60
61
62
63
64
# File 'lib/dbum/main.rb', line 58

def server
  App.config! options
  App.run!
  at_exit do
    App.close!
  end
end

#versionObject



17
18
19
20
# File 'lib/dbum/main.rb', line 17

def version
  puts VERSION
  return nil
end