forked from taskjuggler/TaskJuggler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskjuggler.gemspec
72 lines (64 loc) · 2.68 KB
/
taskjuggler.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding: utf-8 -*-
#
# = taskjuggler.gemspec -- The TaskJuggler III Project Management Software
#
# Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011
# by Chris Schlaeger <[email protected]>
#
# 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.
#
# This gemspec file will be used to package the taskjuggler gem. Before you
# use it, the manual and other generated files must have been created!
lib = File.expand_path('../lib', __FILE__)
$:.unshift lib unless $:.include?(lib)
# Get software version number from Tj3Config class.
begin
$: << 'lib'
require 'taskjuggler/Tj3Config'
PROJECT_VERSION = AppConfig.version
PROJECT_NAME = AppConfig.softwareName
rescue LoadError
raise "Error: Cannot determine software settings: #{$!}"
end
GEM_SPEC = Gem::Specification.new { |s|
s.name = 'taskjuggler'
s.version = PROJECT_VERSION
s.homepage = 'http://www.taskjuggler.org'
s.author = 'Chris Schlaeger'
s.email = '[email protected]'
s.rubyforge_project = 'taskjuggler'
s.summary = 'A Project Management Software'
s.description = <<'EOT'
TaskJuggler is a modern and powerful, Free and Open Source Software project
management tool. Its new approach to project planing and tracking is more
flexible and superior to the commonly used Gantt chart editing tools.
TaskJuggler is project management software for serious project managers. It
covers the complete spectrum of project management tasks from the first idea
to the completion of the project. It assists you during project scoping,
resource assignment, cost and revenue planing, risk and communication
management.
EOT
s.require_path = 'lib'
s.files = (`git ls-files -- lib`).split("\n") +
(`git ls-files -- data`).split("\n") +
(`git ls-files -- manual`).split("\n") +
(`git ls-files -- examples`).split("\n") +
(`git ls-files -- tasks`).split("\n") +
%w( .gemtest taskjuggler.gemspec Rakefile ) +
# Generated files, not contained in Git repository.
%w( data/tjp.vim ) + Dir.glob('manual/html/**/*')
s.bindir = 'bin'
s.executables = (`git ls-files -- bin`).split("\n").
map { |fn| File.basename(fn) }
s.test_files = (`git ls-files -- test`).split("\n") +
(`git ls-files -- spec`).split("\n")
s.has_rdoc = true
s.extra_rdoc_files = %w( README.rdoc COPYING CHANGELOG )
s.add_dependency('mail', '>= 2.4.3')
s.add_dependency('term-ansicolor', '>= 1.0.7')
s.add_development_dependency('rspec', '>= 2.5.0')
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.8.7'
}