Try to delete the *~ files again
[graph.njae.git] / lib / graph / graph.rb~
diff --git a/lib/graph/graph.rb~ b/lib/graph/graph.rb~
deleted file mode 100644 (file)
index c9d83b1..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'ostruct'
-
-module Graph
-  class Graph < OpenStruct
-    def initialize
-      super
-      self.edges = Array.new
-      self.vertices = Array.new
-      self
-    end
-    
-    def <<(other)
-      if other.class == Vertex
-        self.vertices << other
-      elsif
-        self.edges << other
-      end
-      self
-    end
-  end
-end