Sha256: 0a10b364ca69f2556eda9ba47f49e399191e8c693823fdc48196faea046c00b8

Contents?: true

Size: 291 Bytes

Versions: 1

Compression:

Stored size: 291 Bytes

Contents

module Vedeu
  class Output
    class << self
      def render
        new.render
      end
    end

    def initialize; end

    def render
      InterfaceRepository.refresh.map do |interface|
        interface.map { |stream| Terminal.output(stream) if stream }
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vedeu-0.0.21 lib/vedeu/output/output.rb