Skip to content

Instantly share code, notes, and snippets.

@pataiji
Last active August 29, 2015 14:14
Show Gist options
  • Save pataiji/d158f6e6e46297bf77f7 to your computer and use it in GitHub Desktop.
Save pataiji/d158f6e6e46297bf77f7 to your computer and use it in GitHub Desktop.
`Rake -T`のprintがキレイだったのでメモ
#!/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