dev_flow 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/ROADMAP ADDED
@@ -0,0 +1,15 @@
1
+ ROADMAP for dev_flow Development
2
+ ==================================
3
+
4
+ % -----
5
+ title: dev_flow development tools
6
+ status: producing
7
+ members:
8
+ huangw: [Huang Wei, "huangw@pe-po.com"]
9
+ leader: huangw
10
+ year: 2013
11
+ % -----
12
+
13
+ [+] release_v0.3: with version number handling 03/25 @huangw:03/25
14
+ [+] hotfix_taginfo: put tag situation on info screen 03/25 @huangw:03/25
15
+ [+] release_v0.4: with cleanup closed local task branches 03/25 @huangw:03/25
data/bin/dw CHANGED
@@ -23,7 +23,8 @@ optparse = OptionParser.new do |opts|
23
23
  options[:local_config] = lc
24
24
  end
25
25
 
26
- options[:members_file] = 'members.yml'
26
+ options[:members_file] = 'members.yml' if File.exists?('members.yml')
27
+ options[:members_file] = 'config/members.yml' if File.exists?('config/members.yml')
27
28
  opts.on('-m MEMBERS_FILE', '--members_file MEMBERS_FILE', 'use an other members file') do |mf|
28
29
  options[:members_file] = mf
29
30
  raise "the specified members file #{mf} is not exists." unless File.exists? mf
File without changes
@@ -24,7 +24,7 @@ module DevFlow
24
24
 
25
25
  # commit you current branch and push
26
26
  progress = 99
27
- message = ARGV[2] || "complete the branch by set progress to 99."
27
+ message = ARGV[2] || "complete your branch by set progress to 99."
28
28
  message = "[complete] " + message
29
29
 
30
30
  info "Commit your progress"
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module DevFlow
2
- VERSION = '0.0.6'
2
+ VERSION = '0.0.7'
3
3
  end
data/tags CHANGED
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.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -52,6 +52,7 @@ extensions: []
52
52
  extra_rdoc_files: []
53
53
  files:
54
54
  - README.md
55
+ - ROADMAP
55
56
  - Rakefile
56
57
  - bin/dw
57
58
  - dev_flow.gemspec
@@ -106,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
107
  version: '0'
107
108
  requirements: []
108
109
  rubyforge_project:
109
- rubygems_version: 1.8.25
110
+ rubygems_version: 1.8.24
110
111
  signing_key:
111
112
  specification_version: 3
112
113
  summary: a bundle of tools for ROADMAP/git based development flow control.