Sha256: c253c9108d067f1a4ba3a80564a17c44064813f96d418d32dc9cf2927a6e2114
Contents?: true
Size: 984 Bytes
Versions: 1
Compression:
Stored size: 984 Bytes
Contents
#!/usr/bin/env ruby -w # encoding: UTF-8 # # = Tj3Config.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 'UTF8String' require 'AppConfig' AppConfig.version = '0.0.10' AppConfig.packageName = 'taskjuggler' AppConfig.softwareName = 'TaskJuggler III' AppConfig.packageInfo = 'A Project Management Software' AppConfig.copyright = [ (2006..2011).to_a ] AppConfig.authors = [ 'Chris Schlaeger <chris@linux.com>' ] AppConfig.contact = 'http://www.taskjuggler.org' AppConfig.license = <<'EOT' 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. EOT
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
taskjuggler-0.0.10 | lib/Tj3Config.rb |