RSS Ruby on Rails: Talk Google Group

the official mailing list for the ruby on rails project. where rails users come to seek help, announce projects, and discuss all kind of matters surrounding the framework and the community.
iNeZha robot will deliver the feed updates to your IM or Email in real-time

Delivery Demo of iNezha MSN Robot

Subscribe it
iNezha robot say:
Ruby on Rails: Talk Google Group
Title:Re: [Rails] Re: Problem with extend rails(add new function in lib)
Summary:You must be doing something slightly different in your standalone ruby script. The segment method fr... (12/2/2008 6:38:41 PM)
Subscribe it

About "Ruby on Rails: Talk Google Group"

Author:Claim it now
Website:http://groups.google.com/group/rubyonrails-talk
RSS:http://groups.google.com/...rails-talk/feed/rss_v2_0_msgs.xml
Update interval: 18 minutes
Last update: 27 minutes ago
Tags:
Subscribers:1
Shared Subscribers:1
Bookmarked or Shared Articles:0  

Recent contents of "Ruby on Rails: Talk Google Group"

Re: [Rails] Re: Problem with extend rails(add new function in lib) 8 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/0142e20ed99c6bce/2f3a57664fe3e663?show_docid=2f3a57664fe3e663
You must be doing something slightly different in your standalone ruby script. The segment method from the RMMSeg module can't be called on RMMSeg itself. You need to include the module in somethin...
Mongrel's memory usage 8 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/a1a882588006b3e2/96e2271db5f87149?show_docid=96e2271db5f87149
We've got a problem with a memory leak (we think) on our site. We've got monit running, which has helped the problem a lot by restarting mongrels when they get too bloated. But, this is obviously j...
Re: [Rails] form_for with partial using do |@f| 9 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/29af804697031427/b415f6ac11b7d1eb?show_docid=b415f6ac11b7d1eb
What you are doing can't work. You can't pass arbitrary ruby objects as params to a url. Fred
Re: Setting up Environment 19 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/f5b1d173b1037448/983cc224b00f38db?show_docid=983cc224b00f38db
Not sure what the issue might be. If you are looking for pre- packaged rails development environment for Windows you may want to try instant rails.... [link] On Nov 30, 12:14 pm, David Franklin ra...
Re: [Rails] A question about link_to tag 9 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/100cb5fc3934001e/046ff0edeb484a91?show_docid=046ff0edeb484a91
Read [link] for a brief overview, and [link] for a longer overview ----- Ryan Bigg Freelancer [link]
A question about link_to tag 9 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/100cb5fc3934001e/db43a702de161890?show_docid=db43a702de161890
Please see this code: %= link_to 'New info', new_info_path % I wander what new_info_path means?
to het element's height and width 10 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/18746310be1c6bae/d449b490deddaadd?show_docid=d449b490deddaadd
Hi... i m trying to give my form opacity effect with external javascript. In that i want to get div element's height and width. My div width is fixed like 500px. Height is not fixed one. According ...
Re: Calling Rake from INSIDE the application 11 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/0e6760a80b1d7062/18c49a01619de9c9?show_docid=18c49a01619de9c9
def run_task result = %x(rake #{params[:rake_task]}) end If you don't want to hold the thread you can install the crontab gem and install a new crontab with a ts:in or use background-fu and push th...
Re: Can I export db data to fixtures? 12 hours ago Read More http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/470f56a4ecb8edb2/b15470ae712cacd4?show_docid=b15470ae712cacd4
Thanks Brian, it seems to be what I want. :)