Method: WikiBot::Bot#format_date
- Defined in:
- lib/wikibot/core/bot.rb
#format_date(date) ⇒ Object
188 189 190 191 192 193 |
# File 'lib/wikibot/core/bot.rb', line 188 def format_date(date) # Formats a date into the Wikipedia format time = date.strftime("%H:%M") month = date.strftime("%B") "#{time}, #{date.day} #{month} #{date.year} (UTC)" end |