« Back to Index

Ruby Namespace Concern

View original Gist on GitHub

Ruby Namespace Concern.rb

module Foo
  module Bar
    def self.create(config)
      Baz.new(config)
    end

    class Baz
      def initialize(config)
        # code
      end
    end
  end
end