View original Gist on GitHub
module Foo module Bar def self.create(config) Baz.new(config) end class Baz def initialize(config) # code end end end end