diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/genruby.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/genruby.rb b/tools/genruby.rb index baca539..f583677 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -166,9 +166,12 @@ def gen_enums path, indent sym=':'+s.downcase if h.has_key? v h[s]=h[v] - else + elsif v.nil? h[s]=i i+=1 + else + h[s]=v + i=v.to_i+1 end end args = syms.inject(''){|r,s| r+=":#{s.strip.downcase}, #{h[s]}, " } |