ditz 0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog CHANGED
@@ -1,2 +1,4 @@
1
+ == 0.1.1 / 2008-04-04
2
+ * bugfix: bugfix/feature question always returns feature
1
3
  == 0.1 / 2008-04-02
2
4
  * Initial release!
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 can be kept under version control alongside project code, and issue state
13
- change can then be handled like code changes: modified as part of a commit,
14
- merged with other state changes from other developers, conflict-resolved in the
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..5, 9..18).join("\n\n").gsub(/== SYNOPSIS/, "Synopsis")
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"
@@ -1,6 +1,6 @@
1
1
  module Ditz
2
2
 
3
- VERSION = "0.1"
3
+ VERSION = "0.1.1"
4
4
 
5
5
  def debug s
6
6
  puts "# #{s}" if $opts[:verbose]
@@ -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: "0.1"
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-02 00:00:00 -07:00
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 can be kept under version control alongside project code, and issue state change can then be handled like code changes: modified as part of a commit, merged with other state 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. # 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> == THE DITZ DATA MODEL Ditz includes the bare minimum set of features necessary for open-source development. Features like time spent, priority, assignment of tasks to developers, due dates, etc. are purposely excluded. A ditz project consists of issues, releases and components. Issues: Issues are the fundamental currency of issue tracking. A ditz issue is either a feature or a bug, but this distinction doesn't affect anything other than how they're displayed. Each issue belongs to exactly one component, and is part of zero or one releases. Each issues has an exportable id, in the form of 40 random hex characters. This id is \"guaranteed\" to be unique across all possible issues and developers, present and future. Issue ids are typically not exposed to the user. Issues also have a non-exportable name, which is short and human-readable. All ditz commands use issue names instead of issue ids. Issue ids may change in certain circumstances, specifically after a \"ditz drop\" command."
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