Sha256: fe8c0cdf4aa50db819c4bb180282f9bcc875987135936b928a8c87f641db108b

Contents?: true

Size: 622 Bytes

Versions: 6

Compression:

Stored size: 622 Bytes

Contents

module SomeBaseNamespace

  module One
  
    module Two
    
      module Three
      
        class Echo
        
          def initialize(options); end
          
          def call(arg)
            puts arg
          end
          
        end
        
      end
      
    end
    
  end
  
end

module One
  module Two
    module Three
      class Echo
        
        def initialize(options); end
        
        def call(arg)
          puts "wrong"
        end
             
      end

    end
  end
end

class Echo
  
  def initialize(options); end
  
  def call(arg)
    puts "also wrong"
  end
       
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ing-0.2.7 test/fixtures/namespace.ing.rb
ing-0.2.2 test/fixtures/namespace.ing.rb
ing-0.2.1 test/fixtures/namespace.ing.rb
ing-0.1.5 test/fixtures/namespace.ing.rb
ing-0.1.2 test/fixtures/namespace.ing.rb
ing-0.1.1 test/fixtures/namespace.ing.rb