Created
September 25, 2015 16:31
-
-
Save joninvski/f23ec98259342161fd8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Central | |
module Interactors | |
module ListWaitingQueue | |
extend self | |
def call() | |
puts "Hello" | |
end | |
private | |
class B | |
attr_reader :b | |
def initialize(b) | |
@b = b | |
end | |
private | |
class C | |
attr_reader :c | |
end | |
end | |
def i_am_hidden() | |
end | |
end | |
end | |
end | |
puts Central::Interactors::ListWaitingQueue::B.new(12) | |
puts Central::Interactors::ListWaitingQueue::B::C.new | |
Central::Interactors::ListWaitingQueue.i_am_hidden |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment