module RELI
Constants
- VERSION
Public Class Methods
[](key)
click to toggle source
# File lib/reli.rb, line 14 def self.[](key) self.const_get(key.capitalize) end
new(options = {})
click to toggle source
# File lib/reli.rb, line 9 def self.new(options = {}) type = options.delete(:type) || :brainfuck self[type].new(options) end