Skip to content

Instantly share code, notes, and snippets.

@adagio
Created August 18, 2014 18:36
Show Gist options
  • Save adagio/28f500ccfaf43f3e9dd5 to your computer and use it in GitHub Desktop.
Save adagio/28f500ccfaf43f3e9dd5 to your computer and use it in GitHub Desktop.
Current date and time on RoR
<div class="thisinstant">
<div class="date">Date: <%= @strdate %></div>
<div class="time">Time: <%= @strtime %><div>
</div>
class WelcomeController < ApplicationController
def index
d = Time.now
@strdate = d.strftime('%b %d')
@strtime = d.strftime('%H:%M')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment