Sha256: 0794731e8a20019a1bd6e7959c58a5e93b3b0a12e2a699e58bed583577dfdc62
Contents?: true
Size: 673 Bytes
Versions: 5
Compression:
Stored size: 673 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, 2012, 2013, 2014 # by Chris Schlaeger <cs@taskjuggler.org> # # 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
5 entries across 5 versions & 1 rubygems