Sha256: 996af8bcc99b7a017b4efb2046726e341d8f5e3e0a653ae4733b90a5f1235361
Contents?: true
Size: 652 Bytes
Versions: 7
Compression:
Stored size: 652 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = Scenario.rb -- The TaskJuggler III Project Management Software # # Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 # by Chris Schlaeger <chris@linux.com> # # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # require 'taskjuggler/PropertyTreeNode' class TaskJuggler class Scenario < PropertyTreeNode def initialize(project, id, name, parent) super(project.scenarios, id, name, parent) project.addScenario(self) end end end
Version data entries
7 entries across 7 versions & 1 rubygems