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/ruby | |
module Helpers | |
LINE = 80 | |
def announcing(msg) | |
print msg | |
yield | |
print "." * (LINE - msg.size - 6) | |
puts "\e[32m[DONE]\e[0m" | |
end |
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
# Examples: | |
# | |
# Reprocess all versions of User#avatar | |
# rake carrierwave:reprocess class=User mounted_uploader=avatar | |
# | |
# Reprocess the versions: thumb, small, medium for User#avatar | |
# rake carrierwave:reprocess class=User mounted_uploader=avatar versions='thumb, small, medium' | |
namespace :carrierwave do | |