dev_flow 0.4.2 → 0.5.0

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/README.md CHANGED
@@ -210,3 +210,6 @@ be used on `devleop` trunk.
210
210
 
211
211
  - `dw clean` will delete local branches corresponding completed tasks.
212
212
 
213
+ - `dw gantt` create HTML/Javascript based Gantt chart under `docs/` folder and push to remote server.
214
+
215
+ - `dw tm [minutes]` start a stop watch timer for `minutes` (default is 25 minutes).
Binary file
Binary file
Binary file
data/bin/dw CHANGED
@@ -73,7 +73,7 @@ command = ARGV[0] || 'info'
73
73
  cmd_alias = {'pg' => 'progress', 'update-roadmap' => 'ur', 'clean' => 'cleanup', 's' => 'switch'}
74
74
  command = cmd_alias[command] if cmd_alias[command]
75
75
 
76
- if %w[info init complete progress close release ur update-roadmap cleanup clean switch gantt].include? command
76
+ if %w[info init complete progress close release ur update-roadmap cleanup clean switch gantt tm timer].include? command
77
77
  options[:command] = command
78
78
  else
79
79
  puts "Unknown command #{command}".red
@@ -99,6 +99,8 @@ if command == 'release'
99
99
  command = 'close'
100
100
  end
101
101
 
102
+ command = 'timer' if command == 'tm'
103
+
102
104
  if command == 'switch'
103
105
  options[:switch] = true
104
106
  options[:branch] = ARGV[1]
data/bin/ot.exe ADDED
Binary file
File without changes
@@ -0,0 +1,13 @@
1
+ module DevFlow
2
+ class Timer < App
3
+
4
+ def process!
5
+
6
+ ms = ARGV[1] ? ARGV[1].to_i : 25
7
+
8
+ b = File.expand_path(File.dirname(__FILE__) + '/../../../bin/ot.exe')
9
+ `#{b} #{ms}`
10
+ end
11
+
12
+ end # class
13
+ end
@@ -1,3 +1,3 @@
1
1
  module DevFlow
2
- VERSION = '0.4.2'
2
+ VERSION = '0.5.0'
3
3
  end
data/tags CHANGED
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev_flow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.5.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-17 00:00:00.000000000 Z
12
+ date: 2013-05-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: term-ansicolor
@@ -53,7 +53,11 @@ extra_rdoc_files: []
53
53
  files:
54
54
  - README.md
55
55
  - Rakefile
56
+ - bin/Sounds/Loud beep.wav
57
+ - bin/Sounds/Normal beep.wav
58
+ - bin/Sounds/Quiet beep.wav
56
59
  - bin/dw
60
+ - bin/ot.exe
57
61
  - dev_flow.gemspec
58
62
  - examples/ROADMAP
59
63
  - examples/ROADMAP_SPEC
@@ -67,6 +71,7 @@ files:
67
71
  - lib/dev_flow/commands/info.rb
68
72
  - lib/dev_flow/commands/init.rb
69
73
  - lib/dev_flow/commands/progress.rb
74
+ - lib/dev_flow/commands/timer.rb
70
75
  - lib/dev_flow/commands/ur.rb
71
76
  - lib/dev_flow/date_name.rb
72
77
  - lib/dev_flow/girc.rb
@@ -113,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
118
  version: '0'
114
119
  requirements: []
115
120
  rubyforge_project:
116
- rubygems_version: 1.8.25
121
+ rubygems_version: 1.8.24
117
122
  signing_key:
118
123
  specification_version: 3
119
124
  summary: a bundle of tools for ROADMAP/git based development flow control.