ohac-ditz 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog ADDED
@@ -0,0 +1,76 @@
1
+ == ohac-ditz 0.5.1 / 2010-01-16
2
+ * add ditz shell (bin/coditz.rb)
3
+ * performance hack (disabled issue name interpolation)
4
+ * performance hack (call unchanged! when save)
5
+ * performance hack (remove unnecessary code)
6
+ * support ruby1.9.1
7
+ * hide warnings: unknown field
8
+ * add sheila (sheila/sheila.rb)
9
+ * sheila: remove git dependency
10
+ * sheila: add contrib/bookmarklet.js to clip web page quickly
11
+ * sheila: show gravatar icon
12
+ * sheila: show reference link
13
+ * sheila: add private mode to fill form quickly
14
+ * fix: handling nil and false
15
+ * make more API friendly: use Trollop explicitly
16
+ * add --quick option to add command
17
+ * add --release option to add command
18
+ * add --component option to add command
19
+ * encoding: use yaml_waml library to handle UTF-8 string in YAML
20
+ * new plugin: issue-timetracker
21
+ * new plugin: icalendar
22
+ * new plugin: mercurial
23
+ * new plugin: sha-names
24
+ * new command: rdf (baetle file support)
25
+ * new command: list
26
+ * fix some bugs (see git log)
27
+ == 0.5 / 2008-08-20
28
+ * ditz tarball now installable without requiring rubygems
29
+ * commands now take their own arguments. use 'ditz help' to see them.
30
+ * 'todo-full' has been replaced with 'todo --all'
31
+ * all commands that required comments now take --comment and --no-comment
32
+ * new git-sync hooks git-sync for synchronized git usage
33
+ * new issue-claiming hook for claiming issues for oneself
34
+ * update hook now called on project.yaml as well as changed issue yaml files
35
+ * hooks no longer run twice if a project devel root is under a home directory
36
+ * when editing a field in an editor, comments are now at the bottom of the buffer
37
+ * ditz now acceps issue ids as well as issue names on the commandline
38
+ * ditz edit takes a --silent option to avoid generating a log message
39
+ * a 'reconfigure' command has been added
40
+ * various webpage tweaks
41
+ * more unix-centrisms fixed
42
+ == 0.4 / 2008-07-27
43
+ * bugfix: HOME environment variable now correctly detected on windows
44
+ * hooks loaded from both home directory and project directory
45
+ * added bash shell completion
46
+ * plugin architecture for tighter SCM integration, etc
47
+ * 'ditz grep' should also grep against comments, log messages, etc
48
+ * added man page
49
+ * removed ditz-convert-from-monolith
50
+ * lots of HTML output tweaking
51
+ == 0.3 / 2008-06-04
52
+ * readline support for all text entry
53
+ * hook system. Use ditz -l to see possible hooks.
54
+ * new commands: archive, shortlog, set-component
55
+ * improved commands: log, assign, add-release
56
+ * new issue type: 'tasks'
57
+ * 'ditz' by itself shows the todo list
58
+ * zsh tab completion for subcommands
59
+ * local config can now specify bugs directory location
60
+ * issue name interpolation now on all issue fields
61
+ * bugfix: various HTML generation bugs
62
+ * bugfix: ditz now works from project subdirectories
63
+ * bugfix: removed UNIX-specific environment variable assumptions
64
+ == 0.2 / 2008-04-11
65
+ * bugfix: store each issue in a separate file to avoid false conflicts
66
+ * added per-command help
67
+ * added 'log' command for recent activity
68
+ * added better exception handling---turn into pretty error messages
69
+ * added text-area commands like /edit, /reset, etc
70
+ * all times now stored in UTC
71
+ == 0.1.2 / 2008-04-04
72
+ * bugfix: add_reference very broken
73
+ == 0.1.1 / 2008-04-04
74
+ * bugfix: bugfix/feature question always returns feature
75
+ == 0.1 / 2008-04-02
76
+ * Initial release!
data/INSTALL ADDED
@@ -0,0 +1,20 @@
1
+ There are a couple ways to install ditz.
2
+
3
+ 1. If you have Rubygems, it's available as a gem. Command your computer
4
+ to "gem install ditz".
5
+
6
+ 2. Get the tarball. Since you're reading this file, you probably have it
7
+ already.
8
+
9
+ 2a. If you're happy with ditz being installed in /usr/bin and the library
10
+ files spread wantonly across your filesystem,
11
+ ruby setup.rb
12
+
13
+ 2b. If you want to control where the files are installed,
14
+ ruby setup.rb config --prefix=/bin /dir--siterubyver=/lib/dir
15
+ ruby setup.rb install
16
+
17
+ 2c. Just run it directly from the tarball.
18
+ ruby -Ilib bin/ditz
19
+
20
+ Good luck, and report any problems to ditz-talk@rubyforge.org