Search Results

1
vote
3answers
198 views

What’s the best strategy for get/setting metadata on Ruby methods at runtime?

I have a class with some methods. It's supersekret but I've reproduced what I can here. Class RayGun # flashes red light # requires confirmation # makes "zowowowowowow" sound …
3
votes
1answer
430 views

Where is it legal to use ruby splat operator?

Splats are cool. They're not just for exploding arrays, although that is fun. They can also cast to Array and flatten arrays (See …
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) …
5
votes

What’s Your Favourite IRB Trick?

Returning nil after a command like this. Example from Rails: people = Person.all #=> screenfuls of people and their attributes as the command returns an array of people …
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 …
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 …
2
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. …

1 2 next
15 30 50 per page