diff options
| author | Jon <[email protected]> | 2013-01-23 00:23:13 -0500 |
|---|---|---|
| committer | Jon <[email protected]> | 2013-01-23 00:23:13 -0500 |
| commit | 7f095534fdaad8dc6f378c1ea6c513c08a42ec01 (patch) | |
| tree | 4da05159cf757ef606fe0e3d14b80afaf63e9b52 /tasks/ruby_ext.rake | |
| parent | 26f353d8078f0cfee621dde14a76952dcbab72c3 (diff) | |
| download | mruby-7f095534fdaad8dc6f378c1ea6c513c08a42ec01.tar.gz mruby-7f095534fdaad8dc6f378c1ea6c513c08a42ec01.zip | |
Refine pretty-print indenting
Diffstat (limited to 'tasks/ruby_ext.rake')
| -rw-r--r-- | tasks/ruby_ext.rake | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tasks/ruby_ext.rake b/tasks/ruby_ext.rake index 2cc1738c3..6817f6018 100644 --- a/tasks/ruby_ext.rake +++ b/tasks/ruby_ext.rake @@ -57,6 +57,10 @@ else $pp_show = false if $verbose end -def _pp(cmd, src, tgt=nil) - puts '%-5s %s %s' % [cmd, src, tgt ? "-> #{tgt}" : nil] if $pp_show +def _pp(cmd, src, tgt=nil, options={}) + return unless $pp_show + + width = 5 + template = options[:indent] ? "%#{width*options[:indent]}s %s %s" : "%-#{width}s %s %s" + puts template % [cmd, src, tgt ? "-> #{tgt}" : nil] end |
