Search Results

4
votes
3answers
219 views

What’s the best way of productizing a Rails application for multiple installations?

UPDATE: It looks like DHH and the Rails Core team finally have a productization itch to sc …
2
votes

Why do I get an error when starting ruby on rails app with mongrel_rails

You already have a process listening on port 3000 (the default port for mongrel). Try: mongrel_rails start -p 3001 and see whether you get a similar error. …
5
votes

What is the best way in Rails to determine if two (or more) given URLs (as strings or hash options) are equal?

Here's the method (bung it in /lib and require it in environment.rb): def same_page?(a, b, params_to_exclude = {}) if a.respond_to?(:except) && b.respond_to?(:except) …
0
votes

Problem with ar_mailer

Check that email_class is set correctly: http://seattlerb.rubyforge.org/ar_mailer/classe …
2
votes

What is the best way to start Unit and Functional testing of a Ruby Rails website?

It sounds like you've already written your application, so I'm not sure you'll get a huge bonus from using RSpec over Test::Unit. Anyhow regardless of which one yo …
1
vote

How to capture an anchor value from url in Ruby on Rails?

I presume you're trying to capture it in JavaScript? var record_id = window.location.href.hash.split("_")[1]; In Prototype you could write: var rec …
1
vote

Silverlight and Rails

A choice between Flex/Silverlight should depend on your skills and what you want the RIA to do. There's a fair comparison here: …
4
votes

How do I configure Apache 2.2 for Ruby on Rails in Windows?

EDIT: At least until there's a Phusion Passenger for Win, Apache + Mongrel is the way to go. You can use Apache + FastCGI without Mongrel, but under real loads you will get (more) …
2
votes

Using respond_to for graceful degradation with ajax in RoR 2.x

Well you can refactor like this: def function basic_stuff # executed regardless of the mime types accepted respond_to do |format| format.html do user_redirect end …
1
vote

Building Ruby on Windows XP

Luis Lavena maintains the Ruby One-Click installer binaries. His blogs and postings on Ruby Forum are definitely the place to start. …
6
votes

ruby/ruby on rails memory leak detection

Some tips to find memory leaks in Rails: use the Bleak Hous …
7
votes

Best Ruby on Rails social networking framework

It depends what your priorities are. If you really want to learn RoR, do it all from scratch. Seriously. Roll your own. It's the best way to learn, far better than hacking …
2
votes

Best way to add full web search to my site?

I recommend acts_as_xapian. It's very easy to implement, it's fast enough, and it's the got the features you'll normally …
3
votes

The dangers of using ExtJS on a big project with RoR?

I've successfully deployed a large RoR/ExtJS app of the kind you describe ("single-page" client-side AJAX driven). Ext_scaffold is pretty much a red-herring. It's not too taxing to get RoR …
9
votes

Why do I need to work harder to make my Rails application fit into a RESTful architecture?

I would treat search as a special case of index. Both actions return a collection of resources. The request parameters should specify things like page, limit, sort order, and search query. …