Displaying 2 results from an estimated 2 matches for "rubyonrailswin".
2009 Mar 04
6
render yield?!
Hello,
I''ve got a little problem with remote functions. I call it for example
like this: <%= link_to_remote ''bla'', :url => ''bla/whatever'', :method =>
:get %>
that function would be:
def whatever
flash[:notice] = "You''re in whatever!"
update_content
end
since I don''t want the page to be reloaded completely,
2010 Aug 19
4
Postgres, concurrency, and rails
I work on a fairly large website that uses Ruby 1.8.6 and Rails 1.2.3.
We cannot upgrade as it will hopelessly break our code. We are working
on a new version in Java but for the next year at least we are stuck
with the legacy system. We use the latest version of Postgresql for the
database using the postgres-pr gem.
I am attempting to implement cron tasks within the system using Rufus
Scheduler,