backlog 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +8 -0
- data/Rakefile +3 -0
- data/lang/en.yaml +1 -0
- data/lang/no.yaml +1 -0
- metadata +6 -5
data/History.txt
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
== 0.7.1 2007-08-14
|
2
|
+
|
3
|
+
* Added author and email to the gem to avoid false listing in Hoe Down!
|
4
|
+
http://seattlerb.rubyforge.org/hoedown.html
|
5
|
+
* This in response to bug 13054
|
6
|
+
http://rubyforge.org/tracker/index.php?func=detail&aid=13054&group_id=3829&atid=14750
|
7
|
+
* Added localized text for weekly work sheet
|
8
|
+
|
1
9
|
== 0.7.0 2007-08-14
|
2
10
|
|
3
11
|
* Back in business after halting to avoid spamming people.
|
data/Rakefile
CHANGED
@@ -16,6 +16,8 @@ Hoe.new("backlog", APP::VERSION) do |p|
|
|
16
16
|
p.rubyforge_name = "backlog"
|
17
17
|
p.summary = "Application to aid collecting, processing, organizing, reviewing and doing tasks."
|
18
18
|
p.description = p.paragraphs_of('README.txt', 0..-1).join("\n\n")
|
19
|
+
p.author = 'Uwe Kubosch'
|
20
|
+
p.email = 'uwe@kubosch.no'
|
19
21
|
p.remote_rdoc_dir = '' # Release to root
|
20
22
|
p.changes = p.paragraphs_of('History.txt', 0..-1).join("\n\n")
|
21
23
|
p.rdoc_pattern = /^(app\/(controllers|helpers|models)|lib|bin)|txt$/
|
@@ -23,6 +25,7 @@ Hoe.new("backlog", APP::VERSION) do |p|
|
|
23
25
|
:files => Dir['**/*'].reject{|file_name| file_name =~ /^(log|pkg|tmp)/}
|
24
26
|
}
|
25
27
|
p.need_zip = true
|
28
|
+
p.url = 'http://rubyforge.org/projects/backlog/'
|
26
29
|
end
|
27
30
|
|
28
31
|
task :release_and_publish do
|
data/lang/en.yaml
CHANGED
data/lang/no.yaml
CHANGED
metadata
CHANGED
@@ -3,13 +3,13 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: backlog
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.7.
|
7
|
-
date: 2007-08-
|
6
|
+
version: 0.7.1
|
7
|
+
date: 2007-08-15 00:00:00 +02:00
|
8
8
|
summary: Application to aid collecting, processing, organizing, reviewing and doing tasks.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
|
-
email:
|
12
|
-
homepage: http://
|
11
|
+
email: uwe@kubosch.no
|
12
|
+
homepage: http://rubyforge.org/projects/backlog/
|
13
13
|
rubyforge_project: backlog
|
14
14
|
description: "== Backlog Welcome to Backlog! Backlog is a tool to help you collect and organize all your tasks, wether you are a single persion or a small or large group. A timekeeping module is also included to track time spent on the different tasks. === Backlog is not meant to be * an issue tracker with customer communication. === Installation * Install ruby * Install RubyGems * Install PostgreSQL * run <tt>sudo gem install backlog -y</tt> * run <tt>sudo backlog setup_linux</tt> * run <tt>sudo backlog start</tt> === Updates * run <tt>sudo backlog stop</tt> * run <tt>sudo gem update -y</tt> * run <tt>sudo backlog start</tt> === Configuration You can set configuration parameters for backlog using the /etc/backlog.conf file. The format is YAML. Currently only port number is settable. Example: port: 3000"
|
15
15
|
autorequire:
|
@@ -27,7 +27,7 @@ signing_key:
|
|
27
27
|
cert_chain:
|
28
28
|
post_install_message:
|
29
29
|
authors:
|
30
|
-
-
|
30
|
+
- Uwe Kubosch
|
31
31
|
files:
|
32
32
|
- public
|
33
33
|
- public/dispatch.rb
|
@@ -227,6 +227,7 @@ files:
|
|
227
227
|
- config/environments/datek_production.rb
|
228
228
|
- LICENSE_LOCALIZATION
|
229
229
|
- README.txt
|
230
|
+
- doc
|
230
231
|
- Manifest.txt
|
231
232
|
- vendor
|
232
233
|
- vendor/plugins
|