Ruby on Rails Friday, March 30, 2012

On Fri, Mar 30, 2012 at 4:24 AM, Ankita M. <lists@ruby-forum.com> wrote:
> Authlogic is not working well with my application.I want solution for
> this..
>
> Attachments:
> http://www.ruby-forum.com/attachment/7204/error.htm
The error is saying you have an undefined variable or method "current_user".
Have you defined it? Authlogic doesn't provide it.

Cheers.

--
Leonardo Mateo.
There's no place like ~

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

Ruby on Rails

Adrian Caceres wrote in post #1044103:
> While on the subject does anyone know what heroku's timeout is before it
> brings down an app?

It will bring your app down after 1 hour of inactivity. Our problem was
also that the first request takes a lot of time because the application
has to start-up again.

We found a nice solution ( http://www.wekkars.com ) that just does what
we want, keep our application alive.

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

Ruby on Rails

i just did

"respond_to examinations_path"

instead of

"respond_to do |format|
format.html
format.json {render :json => @examination}
end"

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.