Last active
August 29, 2015 14:14
-
-
Save pataiji/d158f6e6e46297bf77f7 to your computer and use it in GitHub Desktop.
`Rake -T`のprintがキレイだったのでメモ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# https://github.com/ruby/rake/blob/master/lib/rake/application.rb#L291 | |
values = %w(Our star is an enormous thermonuclear furnace more than a million times as big as Earth) | |
width = values.map(&:length).max || 10 | |
values.each do |v| | |
printf("%-#{width}s # this is a pen.\n", v) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment