Sha256: 7fbbdd48609889173578e377af1161b607fbba0a4013b92efb0dc1a6d78358d4
Contents?: true
Size: 714 Bytes
Versions: 3
Compression:
Stored size: 714 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = TableReportColumn.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. # class TaskJuggler # This class holds some computed data that is used to render the TableReport # Columns. class TableReportColumn attr_accessor :start, :end def initialize(startDate, endDate) @start = startDate @end = endDate end end end
Version data entries
3 entries across 3 versions & 1 rubygems