Skip to content

Instantly share code, notes, and snippets.

@joninvski
Created September 25, 2015 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joninvski/f23ec98259342161fd8a to your computer and use it in GitHub Desktop.
Save joninvski/f23ec98259342161fd8a to your computer and use it in GitHub Desktop.
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