Sha256: 1415adbca9c26940a153fff59c7c251cf270324ae070e42600618013af3603c1
Contents?: true
Size: 664 Bytes
Versions: 3
Compression:
Stored size: 664 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = AccountCredit.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 class AccountCredit attr_reader :date, :description, :amount def initialize(date, description, amount) @date = date @description = description @amount = amount end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
taskjuggler-3.7.2 | lib/taskjuggler/AccountCredit.rb |
taskjuggler-3.7.1 | lib/taskjuggler/AccountCredit.rb |
taskjuggler-3.6.0 | lib/taskjuggler/AccountCredit.rb |