Sha256: eb789c105fbc66e7ff725cb678611c6f3066bc80e4bd363c70dc414f0af50fcb

Contents?: true

Size: 355 Bytes

Versions: 15

Compression:

Stored size: 355 Bytes

Contents

class Usher
  module Util
    class Graph
      
      attr_reader :router
            
      def initialize(router)
        @router = router
      end
      
      def draw(output)
        File.open(output, 'w') do |f|
          f.puts "digraph {"
          f.puts %|node[label="node"]|
          f.puts "}"
        end
      end
      
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
usher-0.7.0 lib/usher/util/graph.rb
usher-0.6.8 lib/usher/util/graph.rb
usher-0.6.7 lib/usher/util/graph.rb
usher-0.6.6 lib/usher/util/graph.rb
usher-0.6.5 lib/usher/util/graph.rb
usher-0.6.4 lib/usher/util/graph.rb
usher-0.6.3 lib/usher/util/graph.rb
usher-0.6.2 lib/usher/util/graph.rb
usher-0.6.1 lib/usher/util/graph.rb
usher-0.6.0 lib/usher/util/graph.rb
usher-0.5.13 lib/usher/util/graph.rb
usher-0.5.12 lib/usher/util/graph.rb
usher-0.5.11 lib/usher/util/graph.rb
usher-0.5.10 lib/usher/util/graph.rb
usher-0.5.8 lib/usher/util/graph.rb