xli-mm 0.0.3

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.
Files changed (47) hide show
  1. data/CHANGES +1 -0
  2. data/LICENSE.TXT +203 -0
  3. data/README +99 -0
  4. data/Rakefile +303 -0
  5. data/TODO +58 -0
  6. data/bin/mm +14 -0
  7. data/install.rb +88 -0
  8. data/lib/mm/api/mingle.rb +72 -0
  9. data/lib/mm/api.rb +30 -0
  10. data/lib/mm/command/console.rb +44 -0
  11. data/lib/mm/console/card.rb +70 -0
  12. data/lib/mm/console/card_resource_command.rb +60 -0
  13. data/lib/mm/console/no_resource_command.rb +31 -0
  14. data/lib/mm/console/processor.rb +65 -0
  15. data/lib/mm/console/runtime_variable.rb +18 -0
  16. data/lib/mm/console/select_index_command.rb +13 -0
  17. data/lib/mm/console/selecting_list.rb +57 -0
  18. data/lib/mm/console/simple_command/base.rb +38 -0
  19. data/lib/mm/console/simple_command/clean_cache.rb +22 -0
  20. data/lib/mm/console/simple_command/help.rb +113 -0
  21. data/lib/mm/console/simple_command/open.rb +29 -0
  22. data/lib/mm/console/simple_command/runtime_variables.rb +34 -0
  23. data/lib/mm/console/simple_command/tabs.rb +21 -0
  24. data/lib/mm/console/simple_command/todo.rb +90 -0
  25. data/lib/mm/console/simple_command.rb +7 -0
  26. data/lib/mm/console/system_cmd.rb +51 -0
  27. data/lib/mm/console/transition.rb +23 -0
  28. data/lib/mm/console/view.rb +43 -0
  29. data/lib/mm/mml.tab.rb +468 -0
  30. data/lib/mm/repository.rb +41 -0
  31. data/lib/mm/resource/mingle.rb +50 -0
  32. data/lib/mm/resource.rb +8 -0
  33. data/lib/mm/utils.rb +11 -0
  34. data/lib/mm.rb +23 -0
  35. data/mm.gemspec +32 -0
  36. data/test/api_test.rb +7 -0
  37. data/test/console_test.rb +317 -0
  38. data/test/console_view_test.rb +66 -0
  39. data/test/expectation_helper.rb +57 -0
  40. data/test/help_test.rb +11 -0
  41. data/test/history_test.rb +110 -0
  42. data/test/open_test.rb +73 -0
  43. data/test/selecting_list_test.rb +7 -0
  44. data/test/system_command_test.rb +34 -0
  45. data/test/todo_test.rb +100 -0
  46. data/test/transitions_test.rb +109 -0
  47. metadata +107 -0
data/CHANGES ADDED
@@ -0,0 +1 @@
1
+ = MM Changelog
data/LICENSE.TXT ADDED
@@ -0,0 +1,203 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
203
+
data/README ADDED
@@ -0,0 +1,99 @@
1
+ = MM
2
+
3
+ Supporting MM version: 0.0.x
4
+
5
+ MM is a development console integrating with Mingle(http://studios.thoughtworks.com/) by Mingle REST API.
6
+
7
+ MM has the following features, some of which is integrating with Mingle:
8
+
9
+ * run transition on card
10
+ * view card list | card
11
+ * commit code with running transition
12
+ * simple todo tasks tool
13
+ * card/view context
14
+ * remember your context history
15
+ * do your job by selecting item from list
16
+ * integrating with terminal console: run console command directly
17
+
18
+ == Download
19
+
20
+ The latest version of MM can be found at
21
+
22
+ * http://github.com/xli/mm/tree
23
+
24
+ == Installation
25
+
26
+ === GEM Installation
27
+
28
+ Run the following if you haven't already:
29
+
30
+ gem sources -a http://gems.github.com
31
+
32
+ Install the gem:
33
+
34
+ sudo gem install xli-mm
35
+
36
+ == Example Log
37
+
38
+ % mingle> story 5079> fix
39
+ % mm: <b>Complete Fix</b> is not applicable to Card #5079.
40
+ %
41
+ % mingle> story 5079> transitions
42
+ %
43
+ % 0) add story to internal release theme
44
+ % 1) Complete Development
45
+ % 2) move to 200
46
+ %
47
+ % ! > Type index number to select item from list.
48
+ %
49
+ % mingle> story 5079> 1
50
+ % mingle> story 5079> #5079
51
+ % #5079 Allow admin to update transition only property values - but preserve the use of automated transitions on the grid view
52
+ % mingle> story 5079> properties
53
+ % ---
54
+ % :"pre-development estimate": "1"
55
+ % :"analysis started on": 2008-09-17
56
+ % :"pre-release estimate": "2"
57
+ % :"dev completed on": 2008-09-23
58
+ % :"dev started on": 2008-09-22
59
+ % :"Release Priority": must
60
+ % :"internal release": 6615
61
+ % :"story status": ready for signoff
62
+ % :release: "2.1"
63
+ % :"added to scope on": 2008-09-17
64
+ % :"internal release theme": 6693
65
+ % :"analysis completed on": 2008-09-18
66
+ % mingle> story 5079>
67
+
68
+ == License
69
+
70
+ MM is available under an Apache License Version 2.0.
71
+
72
+ == Support
73
+
74
+ The MM homepage is http://github.com/xli/mm/tree.
75
+
76
+ Feel free to submit commits or feature requests. If you send a patch,
77
+ remember to update the corresponding unit tests. If fact, I prefer
78
+ new feature to be submitted in the form of new unit tests.
79
+
80
+ For other information, feel free to contact mailto:iam@li-xiao.com.
81
+
82
+ == Usage
83
+
84
+ Type "mm" to launch the console.
85
+
86
+ = Other stuff
87
+
88
+ Author:: Li Xiao <iam@li-xiao.com>
89
+ Requires:: Ruby 1.8.6 or later
90
+ License:: Copyright 2008 by Li Xiao.
91
+ Released under an Apache License Version 2.0. See the LICENSE file
92
+ included in the distribution.
93
+
94
+ == Warranty
95
+
96
+ This software is provided "as is" and without any express or
97
+ implied warranties, including, without limitation, the implied
98
+ warranties of merchantibility and fitness for a particular
99
+ purpose.
data/Rakefile ADDED
@@ -0,0 +1,303 @@
1
+ # Rakefile for MM -*- ruby -*-
2
+
3
+ # Copyright 2007 by Li Xiao (iam@li-xiao.com)
4
+ # All rights reserved.
5
+
6
+ $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/lib')
7
+ require 'mm'
8
+
9
+ require 'rake/clean'
10
+ require 'rake/testtask'
11
+ require 'rake/rdoctask'
12
+
13
+ begin
14
+ require 'rubygems'
15
+ require 'rake/gempackagetask'
16
+ rescue Exception
17
+ nil
18
+ end
19
+ CLEAN.include('**/*.o', '*.dot')
20
+ CLOBBER.include('TAGS')
21
+ CLOBBER.include('coverage', 'rcov_aggregate')
22
+
23
+ def announce(msg='')
24
+ STDERR.puts msg
25
+ end
26
+
27
+ if `ruby -Ilib ./bin/mm -v` =~ /mm, version ([0-9.]+)$/
28
+ CURRENT_VERSION = $1
29
+ else
30
+ CURRENT_VERSION = "0.0.0"
31
+ end
32
+
33
+ $package_version = CURRENT_VERSION
34
+
35
+ SRC_RB = FileList['lib/**/*.rb', 'lib/**/*.rake']
36
+
37
+ # The default task is run if rake is given no explicit arguments.
38
+
39
+ desc "Default Task"
40
+ task :default => :test_all
41
+
42
+ # Test Tasks ---------------------------------------------------------
43
+ task :dbg do |t|
44
+ puts "Arguments are: #{t.args.join(', ')}"
45
+ end
46
+
47
+ # Common Abbreviations ...
48
+
49
+ task :test_all => [:test_units]
50
+ task :test => :test_units
51
+
52
+ Rake::TestTask.new(:test_units) do |t|
53
+ t.test_files = FileList['test/*test.rb']
54
+ t.warning = false
55
+ t.verbose = false
56
+ end
57
+
58
+ begin
59
+ require 'rcov/rcovtask'
60
+
61
+ Rcov::RcovTask.new do |t|
62
+ t.libs << "test"
63
+ t.rcov_opts = [
64
+ '-xRakefile', '-xrakefile', '-xpublish.rf', '--text-report',
65
+ ]
66
+ t.test_files = FileList[
67
+ 'test/*test.rb'
68
+ ]
69
+ t.output_dir = 'coverage'
70
+ t.verbose = true
71
+ end
72
+ rescue LoadError
73
+ # No rcov available
74
+ end
75
+
76
+ # Install MM using the standard install.rb script.
77
+
78
+ desc "Install the application"
79
+ task :install do
80
+ ruby "install.rb"
81
+ end
82
+
83
+ # Create a task to build the RDOC documentation tree.
84
+
85
+ rd = Rake::RDocTask.new("rdoc") { |rdoc|
86
+ rdoc.rdoc_dir = 'html'
87
+ # rdoc.template = 'kilmer'
88
+ # rdoc.template = 'css2'
89
+ rdoc.template = 'doc/jamis.rb'
90
+ rdoc.title = "Mingle Mingle"
91
+ rdoc.options << '--line-numbers' << '--inline-source' <<
92
+ '--main' << 'README' <<
93
+ '--title' << '"Mingle Mingle'
94
+ rdoc.rdoc_files.include('README', 'LICENSE.txt', 'TODO', 'CHANGES')
95
+ rdoc.rdoc_files.include('lib/**/*.rb', 'doc/**/*.rdoc')
96
+ }
97
+
98
+ # ====================================================================
99
+ # Create a task that will package the Mingle Mingle software into distributable
100
+ # tar, zip and gem files.
101
+
102
+ PKG_FILES = FileList[
103
+ 'install.rb',
104
+ '[A-Z]*',
105
+ 'bin/**/*',
106
+ 'lib/**/*.rb',
107
+ 'lib/**/*.rake',
108
+ 'test/**/*.rb',
109
+ 'doc/**/*'
110
+ ]
111
+ PKG_FILES.exclude('doc/example/*.o')
112
+ PKG_FILES.exclude(%r{doc/example/main$})
113
+
114
+ if ! defined?(Gem)
115
+ puts "Package Target requires RubyGEMs"
116
+ else
117
+ File.open(File.dirname(__FILE__) + '/mm.gemspec') do |f|
118
+ data = f.read
119
+ spec = nil
120
+ Thread.new { spec = eval("$SAFE = 3\n#{data}") }.join
121
+ package_task = Rake::GemPackageTask.new(spec) do |pkg|
122
+ #pkg.need_zip = true
123
+ #pkg.need_tar = true
124
+ end
125
+ end
126
+ end
127
+
128
+ # Misc tasks =========================================================
129
+
130
+ def count_lines(filename)
131
+ lines = 0
132
+ codelines = 0
133
+ open(filename) { |f|
134
+ f.each do |line|
135
+ lines += 1
136
+ next if line =~ /^\s*$/
137
+ next if line =~ /^\s*#/
138
+ codelines += 1
139
+ end
140
+ }
141
+ [lines, codelines]
142
+ end
143
+
144
+ def show_line(msg, lines, loc)
145
+ printf "%6s %6s %s\n", lines.to_s, loc.to_s, msg
146
+ end
147
+
148
+ desc "Count lines in the main MM file"
149
+ task :lines do
150
+ total_lines = 0
151
+ total_code = 0
152
+ show_line("File Name", "LINES", "LOC")
153
+ SRC_RB.each do |fn|
154
+ lines, codelines = count_lines(fn)
155
+ show_line(fn, lines, codelines)
156
+ total_lines += lines
157
+ total_code += codelines
158
+ end
159
+ show_line("TOTAL", total_lines, total_code)
160
+ end
161
+
162
+ # Define an optional publish target in an external file. If the
163
+ # publish.rf file is not found, the publish targets won't be defined.
164
+
165
+ load "publish.rf" if File.exist? "publish.rf"
166
+
167
+ # Support Tasks ------------------------------------------------------
168
+
169
+ RUBY_FILES = FileList['**/*.rb'].exclude('pkg')
170
+
171
+ desc "Look for TODO and FIXME tags in the code"
172
+ task :todo do
173
+ RUBY_FILES.egrep(/#.*(FIXME|TODO|TBD)/)
174
+ end
175
+
176
+ desc "Look for Debugging print lines"
177
+ task :dbg do
178
+ RUBY_FILES.egrep(/\bDBG|\bbreakpoint\b/)
179
+ end
180
+
181
+ desc "List all ruby files"
182
+ task :rubyfiles do
183
+ puts RUBY_FILES
184
+ puts FileList['bin/*'].exclude('bin/*.rb')
185
+ end
186
+ task :rf => :rubyfiles
187
+
188
+ desc "Create a TAGS file"
189
+ task :tags => "TAGS"
190
+
191
+ TAGS = 'xctags -e'
192
+
193
+ file "TAGS" => RUBY_FILES do
194
+ puts "Makings TAGS"
195
+ sh "#{TAGS} #{RUBY_FILES}", :verbose => false
196
+ end
197
+
198
+ # --------------------------------------------------------------------
199
+ # Creating a release
200
+
201
+ task :update_site do
202
+ puts %x[scp -r html/* lixiao@rubyforge.org:/var/www/gforge-projects/mm/]
203
+ end
204
+
205
+ task :noop
206
+
207
+ desc "[rel, reuse, reltest] Make a new release"
208
+ task :release => [
209
+ :prerelease,
210
+ :clobber,
211
+ :test_all,
212
+ :update_version,
213
+ :package,
214
+ :tag] do
215
+
216
+ announce
217
+ announce "**************************************************************"
218
+ announce "* Release #{$package_version} Complete."
219
+ announce "* Packages ready to upload."
220
+ announce "**************************************************************"
221
+ announce
222
+ end
223
+
224
+ # Validate that everything is ready to go for a release.
225
+ desc "[rel, reuse, reltest]"
226
+ task :prerelease do |t, rel, reuse, reltest|
227
+ $package_version = rel
228
+ announce
229
+ announce "**************************************************************"
230
+ announce "* Making RubyGem Release #{$package_version}"
231
+ announce "* (current version #{CURRENT_VERSION})"
232
+ announce "**************************************************************"
233
+ announce
234
+
235
+ # Is a release number supplied?
236
+ unless rel
237
+ fail "Usage: rake release[X.Y.Z] [REUSE=tag_suffix]"
238
+ end
239
+
240
+ # Is the release different than the current release.
241
+ # (or is REUSE set?)
242
+ if $package_version == CURRENT_VERSION && ! reuse
243
+ fail "Current version is #{$package_version}, must specify REUSE=tag_suffix to reuse version"
244
+ end
245
+
246
+ # Are all source files checked in?
247
+ if reltest
248
+ announce "Release Task Testing, skipping checked-in file test"
249
+ else
250
+ announce "Checking for unchecked-in files..."
251
+ data = `svn st`
252
+ unless data =~ /^$/
253
+ abort "svn status is not clean ... do you have unchecked-in files?"
254
+ end
255
+ announce "No outstanding checkins found ... OK"
256
+ end
257
+ end
258
+
259
+ desc "[rel, reuse, reltest]"
260
+ task :update_version => [:prerelease] do |t, rel, reuse, reltest|
261
+ if rel == CURRENT_VERSION
262
+ announce "No version change ... skipping version update"
263
+ else
264
+ announce "Updating MM version to #{rel}"
265
+ open("lib/mm.rb") do |mmin|
266
+ open("lib/mm.rb.new", "w") do |mmout|
267
+ mmin.each do |line|
268
+ if line =~ /^VERSION\s*=\s*/
269
+ mmout.puts " VERSION = '#{rel}'"
270
+ else
271
+ mmout.puts line
272
+ end
273
+ end
274
+ end
275
+ end
276
+ mv "lib/mm.rb.new", "lib/mm.rb"
277
+ if reltest
278
+ announce "Release Task Testing, skipping commiting of new version"
279
+ else
280
+ sh %{svn commit -m "Updated to version #{rel}" lib/mm.rb} # "
281
+ end
282
+ end
283
+ end
284
+
285
+ desc "[rel, reuse, reltest] Tag all the CVS files with the latest release number (REL=x.y.z)"
286
+ task :tag => [:prerelease] do |t, rel, reuse, reltest|
287
+ reltag = "REL_#{rel.gsub(/\./, '_')}"
288
+ reltag << reuse.gsub(/\./, '_') if reuse
289
+ announce "Tagging Repository with [#{reltag}]"
290
+ if reltest
291
+ announce "Release Task Testing, skipping CVS tagging"
292
+ else
293
+ sh %{svn copy svn+ssh://rubyforge.org/var/svn/mm/trunk svn+ssh://rubyforge.org/var/svn/mm/tags/#{reltag} -m 'Commiting release #{reltag}'}
294
+ end
295
+ end
296
+
297
+ desc "Install the jamis RDoc template"
298
+ task :install_jamis_template do
299
+ require 'rbconfig'
300
+ dest_dir = File.join(Config::CONFIG['rubylibdir'], "rdoc/generators/template/html")
301
+ fail "Unabled to write to #{dest_dir}" unless File.writable?(dest_dir)
302
+ install "doc/jamis.rb", dest_dir, :verbose => true
303
+ end
data/TODO ADDED
@@ -0,0 +1,58 @@
1
+ = MM Project -- To Do List
2
+
3
+ Send suggestions for this list to iam@li-xiao.com
4
+
5
+ === To Do
6
+ help doc
7
+
8
+ help mode
9
+ change workspace
10
+ view filters => view workspace
11
+ view by mql
12
+ project
13
+ team
14
+ card
15
+ attributes
16
+ properties
17
+ date property
18
+ user property
19
+ card property
20
+ update card attribute
21
+ create card
22
+ view
23
+ list
24
+ next
25
+ previous
26
+ page number
27
+ better error message for running transition without card context
28
+ integrate with stdout of sub process
29
+ reload command
30
+ remove completed task after one day
31
+ should raise error when commit with invalid transition script
32
+
33
+ === DONE
34
+ refresh cached objects
35
+ tabs
36
+ select tab from list
37
+ views
38
+ select view from list
39
+ view
40
+ select card from list
41
+ change workspace
42
+ #number => card workspace
43
+ transition name #number => card workspace
44
+ view name => view workspace
45
+ project
46
+ set runtime variable
47
+ variable list
48
+ show variable
49
+ card
50
+ transitions
51
+ transition
52
+ properties
53
+ card property
54
+ user property
55
+ svn commit
56
+
57
+
58
+ (moved DONE list to CHANGES file)
data/bin/mm ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+ puts '>>>'
3
+ begin
4
+ require 'mm'
5
+ rescue LoadError
6
+ require 'rubygems'
7
+ require 'mm'
8
+ end
9
+
10
+ puts "mm, version #{MM::VERSION}"
11
+ puts "Type 'help' for usage"
12
+ unless ARGV == ['-v'] || ARGV == ['--version']
13
+ MM::Command::Console.new.run
14
+ end