module Segno
Constants
- VERSION
Public Class Methods
generator(options = {})
click to toggle source
# File lib/segno.rb, line 11 def self.generator(options = {}) Segno::Generator.new(options) end
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/segno.rb, line 15 def self.method_missing(method_name, *args, &block) return super unless generator.respond_to?(method_name) generator.send(method_name, *args, &block) end
respond_to?(method_name, include_private = false)
click to toggle source
Calls superclass method
# File lib/segno.rb, line 20 def self.respond_to?(method_name, include_private = false) return generator.respond_to?(method_name, include_private) || super end