ditz 0.1 → 0.1.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/Changelog +2 -0
- data/README.txt +3 -3
- data/Rakefile +1 -1
- data/lib/ditz.rb +1 -1
- data/lib/model-objects.rb +1 -1
- metadata +3 -3
data/Changelog
CHANGED
data/README.txt
CHANGED
@@ -9,9 +9,9 @@ http://ditz.rubyforge.org
|
|
9
9
|
Ditz is a simple, light-weight distributed issue tracker designed to work with
|
10
10
|
distributed version control systems like darcs and git. Ditz maintains an issue
|
11
11
|
database file on disk, written in a line-based and human-editable format. This
|
12
|
-
file
|
13
|
-
|
14
|
-
merged with
|
12
|
+
file is kept under version control, alongside project code. Changes in issue
|
13
|
+
state is handled by version control like code change: included as part of a
|
14
|
+
commit, merged with changes from other developers, conflict-resolved in the
|
15
15
|
standard manner, etc.
|
16
16
|
|
17
17
|
Ditz provides a simple, console-based interface for creating and updating the
|
data/Rakefile
CHANGED
@@ -13,7 +13,7 @@ Hoe.new('ditz', Ditz::VERSION) do |p|
|
|
13
13
|
p.author = "William Morgan"
|
14
14
|
p.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."
|
15
15
|
|
16
|
-
p.description = p.paragraphs_of('README.txt', 4..
|
16
|
+
p.description = p.paragraphs_of('README.txt', 4..11).join("\n\n").gsub(/== SYNOPSIS/, "Synopsis:")
|
17
17
|
p.url = "http://ditz.rubyforge.org"
|
18
18
|
p.changes = p.paragraphs_of('Changelog', 0..0).join("\n\n")
|
19
19
|
p.email = "wmorgan-ditz@masanjin.net"
|
data/lib/ditz.rb
CHANGED
data/lib/model-objects.rb
CHANGED
@@ -209,7 +209,7 @@ class Issue < ModelObject
|
|
209
209
|
end
|
210
210
|
|
211
211
|
def get_type config, project
|
212
|
-
ask "Is this a (b)ugfix or a (f)eature?", :restrict => /^[bf]$/
|
212
|
+
type = ask "Is this a (b)ugfix or a (f)eature?", :restrict => /^[bf]$/
|
213
213
|
type == "b" ? :bugfix : :feature
|
214
214
|
end
|
215
215
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ditz
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- William Morgan
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-04-
|
12
|
+
date: 2008-04-04 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: "1.7"
|
23
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
|
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
25
|
email: wmorgan-ditz@masanjin.net
|
26
26
|
executables:
|
27
27
|
- ditz
|