Skip to content

Instantly share code, notes, and snippets.

@WassifAziz
Created May 31, 2012 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WassifAziz/2842923 to your computer and use it in GitHub Desktop.
Save WassifAziz/2842923 to your computer and use it in GitHub Desktop.
Trying to get it to display hello if the minutes are set to 23 in the controller. (Not sure of doing it right)
index.html.erb
<% if @minutes == 23 %>
<%= "helllo" %>
<% else %>
Anonymous
<% end %>
============================
home_controller.rb
class HomeController < ApplicationController
def index
@minutes = 23
@minutes = params[:minutes]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment