module BOBrb
build or bail
Constants
- VERSION
Public Class Methods
d(*args)
click to toggle source
# File lib/BOBrb.rb, line 14 def self.d(*args) BOBrb::Element.method(:d) end
data(*args)
click to toggle source
# File lib/BOBrb.rb, line 11 def self.data(*args) BOBrb::Element.method(:data) end
get_mode()
click to toggle source
# File lib/BOBrb.rb, line 22 def self.get_mode @@mode end
new(*args)
click to toggle source
# File lib/BOBrb.rb, line 7 def self.new(*args) BOBrb::Element.new(*args) end
set_mode(mode=:html)
click to toggle source
# File lib/BOBrb.rb, line 17 def self.set_mode(mode=:html) #supported: :html and :xml #Will affect how the resulting output is formatted @@mode = mode end