dev_flow 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/dw +2 -1
- data/lib/dev_flow/version.rb +1 -1
- metadata +1 -1
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
|
data/lib/dev_flow/version.rb
CHANGED