ditz 0.1.1 → 0.1.2

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/Changelog CHANGED
@@ -1,3 +1,5 @@
1
+ == 0.1.2 / 2008-04-04
2
+ * bugfix: add_reference very broken
1
3
  == 0.1.1 / 2008-04-04
2
4
  * bugfix: bugfix/feature question always returns feature
3
5
  == 0.1 / 2008-04-02
data/Rakefile CHANGED
@@ -41,7 +41,7 @@ task :upload_webpage_images => (SCREENSHOTS + SCREENSHOTS_SMALL) do |t|
41
41
  end
42
42
 
43
43
  task :upload_report do |t|
44
- sh "ditz html ditz"
44
+ sh "ruby -Ilib bin/ditz html ditz"
45
45
  sh "scp -Cr ditz wmorgan@rubyforge.org:/var/www/gforge-projects/ditz/"
46
46
  end
47
47
 
@@ -1,6 +1,6 @@
1
1
  module Ditz
2
2
 
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
 
5
5
  def debug s
6
6
  puts "# #{s}" if $opts[:verbose]
@@ -40,7 +40,7 @@
40
40
  <p>No past releases.</p>
41
41
  <% else %>
42
42
  <ul>
43
- <% past_releases.each do |r| %>
43
+ <% past_releases.sort_by { |r| r.release_time }.reverse.each do |r| %>
44
44
  <li><%= link_to r, "Release #{r.name}" %>, released <%= r.release_time.pretty_date %>. </li>
45
45
  <% end %>
46
46
  </ul>
@@ -82,7 +82,8 @@ EOS
82
82
  issue = project.issue_for issue_name
83
83
  reference = ask "Reference"
84
84
  comment = ask_multiline "Comments"
85
- issue.add_reference reference, config.user, comment
85
+ issue.add_reference reference
86
+ issue.log "added reference #{issue.references.size}", config.user, comment
86
87
  puts "Added reference to #{issue.name}"
87
88
  end
88
89
 
metadata CHANGED
@@ -1,34 +1,33 @@
1
1
  --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.0
3
+ specification_version: 1
2
4
  name: ditz
3
5
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
6
+ version: 0.1.2
7
+ date: 2008-04-04 00:00:00 -07:00
8
+ summary: A simple issue tracker designed to integrate well with distributed version control systems like git and darcs. State is saved to a YAML file kept under version control, allowing issues to be closed/added/modified as part of a commit.
9
+ require_paths:
10
+ - lib
11
+ email: wmorgan-ditz@masanjin.net
12
+ homepage: http://ditz.rubyforge.org
13
+ rubyforge_project: ditz
14
+ description: "Ditz is a simple, light-weight distributed issue tracker designed to work with distributed version control systems like darcs and git. Ditz maintains an issue database file on disk, written in a line-based and human-editable format. This file is kept under version control, alongside project code. Changes in issue state is handled by version control like code change: included as part of a commit, merged with changes from other developers, conflict-resolved in the standard manner, etc. Ditz provides a simple, console-based interface for creating and updating the issue database file, and some rudimentary HTML generation capabilities for producing world-readable status pages. It offers no central public method of bug submission. Synopsis: # set up project. creates the bugs.yaml file. 1. ditz init 2. ditz add-release # add an issue 3. ditz add # where am i? 4. ditz status 5. ditz todo # do work 6. write code 7. ditz close <issue-id> 8. commit 9. goto 3 # finished! 10. ditz release <release-name>"
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
5
25
  platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
6
29
  authors:
7
30
  - William Morgan
8
- autorequire:
9
- bindir: bin
10
- cert_chain: []
11
-
12
- date: 2008-04-04 00:00:00 -07:00
13
- default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: trollop
17
- version_requirement:
18
- version_requirements: !ruby/object:Gem::Requirement
19
- requirements:
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: "1.7"
23
- version:
24
- description: "Ditz is a simple, light-weight distributed issue tracker designed to work with distributed version control systems like darcs and git. Ditz maintains an issue database file on disk, written in a line-based and human-editable format. This file is kept under version control, alongside project code. Changes in issue state is handled by version control like code change: included as part of a commit, merged with changes from other developers, conflict-resolved in the standard manner, etc. Ditz provides a simple, console-based interface for creating and updating the issue database file, and some rudimentary HTML generation capabilities for producing world-readable status pages. It offers no central public method of bug submission. Synopsis: # set up project. creates the bugs.yaml file. 1. ditz init 2. ditz add-release # add an issue 3. ditz add # where am i? 4. ditz status 5. ditz todo # do work 6. write code 7. ditz close <issue-id> 8. commit 9. goto 3 # finished! 10. ditz release <release-name>"
25
- email: wmorgan-ditz@masanjin.net
26
- executables:
27
- - ditz
28
- extensions: []
29
-
30
- extra_rdoc_files:
31
- - README.txt
32
31
  files:
33
32
  - Changelog
34
33
  - README.txt
@@ -48,32 +47,26 @@ files:
48
47
  - lib/style.css
49
48
  - lib/unassigned.rhtml
50
49
  - lib/util.rb
51
- has_rdoc: true
52
- homepage: http://ditz.rubyforge.org
53
- post_install_message:
50
+ test_files: []
51
+
54
52
  rdoc_options:
55
53
  - --main
56
54
  - README.txt
57
- require_paths:
58
- - lib
59
- required_ruby_version: !ruby/object:Gem::Requirement
60
- requirements:
61
- - - ">="
62
- - !ruby/object:Gem::Version
63
- version: "0"
64
- version:
65
- required_rubygems_version: !ruby/object:Gem::Requirement
66
- requirements:
67
- - - ">="
68
- - !ruby/object:Gem::Version
69
- version: "0"
70
- version:
71
- requirements: []
55
+ extra_rdoc_files:
56
+ - README.txt
57
+ executables:
58
+ - ditz
59
+ extensions: []
72
60
 
73
- rubyforge_project: ditz
74
- rubygems_version: 1.0.1
75
- signing_key:
76
- specification_version: 2
77
- summary: A simple issue tracker designed to integrate well with distributed version control systems like git and darcs. State is saved to a YAML file kept under version control, allowing issues to be closed/added/modified as part of a commit.
78
- test_files: []
61
+ requirements: []
79
62
 
63
+ dependencies:
64
+ - !ruby/object:Gem::Dependency
65
+ name: trollop
66
+ version_requirement:
67
+ version_requirements: !ruby/object:Gem::Version::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: "1.7"
72
+ version: