# File lib/heroku/helpers.rb, line 151
    def quantify(string, num)
      "%d %s" % [ num, num.to_i == 1 ? string : "#{string}s" ]
    end