Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove ruby example from simgrid.
[simgrid.git] / src / bindings / rubyDag / simdag.rb
diff --git a/src/bindings/rubyDag/simdag.rb b/src/bindings/rubyDag/simdag.rb
deleted file mode 100644 (file)
index a4bccca..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-require 'dag'
-
-#===========================
-# Task Class
-# ==========================
-class DAG::Task < DAG::SdTask
-  
-  def initialize(*args)
-    super(args)
-  end
-  
-  def name()
-    super(self)
-  end
-  
-  def startTime()
-    super(self)
-  end
-  
-  def finishTime()
-    super(self)
-  end
-  
-end
-
-#=============================
-# WorkStation Class
-#=============================
-class DAG::Workstation < DAG::SdWorkstation
-  
-  def initialize()
-    super()
-  end
-  
-  def name()
-    super(self)
-  end
-  
-end
\ No newline at end of file