Tagged Questions

4
votes
3answers
53 views

What does string * ‘’ mean in Ruby?

I was looking through some Rails source code and came across # File vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb, line 129 129: def target! 130: @target …
0
votes
3answers
21 views

Ruby MatchData class is repeating captures, instead of including additional captures as it “should”

Ruby 1.9.1, OSX 10.5.8 I'm trying to write a simple app that parses through of bunch of java based html template files to replace a period (.) with an underscore if it's contained within a specific …
0
votes
1answer
10 views

Workling worker cannot find newly added record

Hello, I'm using Starling and Workling to process background tasks in my application, a Swoopo-style auction site. In this case the background task is a notification system that monitors auctions and …
0
votes
3answers
19 views

Perform sum with nested controllers

I have two models of concern, "Order" and "Kit"; each order has_one :kit Each "Kit" has a 'cost' value. Within a controller I want to be able to sum together the costs for each 'order'. Logically I …
1
vote
5answers
69 views

How do I check if a string has at least one number in it using Ruby?

I need to check to see if a string contains at least one number in it using Ruby (and I assume some sort of regex?). How would I do that?
1
vote
1answer
18 views

editor with plugins in ruby?

Hi. I'm looking for extensible linux editor(GUI) that may be extended with plugins written in ruby. Editor shouldn't be written in java or ruby. Any ideas?
3
votes
1answer
23 views

How do I write and test password changes when using Authlogic?

An application I inherited has the following action for updating a user's profile: class UsersController < ApplicationController # ... def update @user = current_user if …
1
vote
4answers
62 views

Replace words from a dictionary

I have an array of hashes, each hash has two keys : "from" and "to" @dictionary = [{:to=>"lazy", :from=>"quick"}, {:to=>"flies", :from=>"jumps"}, {:from => "over the", :to => "under …
1
vote
2answers
46 views

Sort a collection of objects by number (highest first) then by letter (alphabetical)

I'm building a widget to show medal counts for the Olympics. I have a collection of "country" objects, where each has a "name" attribute, and "gold", "silver", "bronze" for medal counts. List should …
3
votes
4answers
34 views

Is there any difference between these two ‘belongs_to’ statements

belongs_to :keeper, :class_name => "Staff" belongs_to "staff", :foreign_key => "keeper_id" In my basic tests, these seem to be doing the exact same thing. Are they indeed the same? Is one …
0
votes
4answers
186 views

Delete hidden files in Ruby

Does anyone know how to delete all files in a directory with Ruby. My script works well when there are no hidden files but when there are (i.e .svn files) I cannot delete them and Ruby raises the …
0
votes
3answers
27 views

Rack-Bug panels won’t appear in my Rails app

I've installed Rack-Bug for my Rails app, but can't get the panels to appear. project: http://github.com/brynary/rack-bug additional instructions: http://wiki.github.com/brynary/rack-bug/security yet …
2
votes
2answers
48 views

Ruby lambda arguments

This code works as expected (does nothing, even doesn't produce warning/errors): l = lambda {|i|} l.call(1) This code produces warning (warning: multiple values for a block parameter (0 for 1)): l …
6
votes
2answers
39 views

Dynamically requiring in ruby

All, I was wondering if anyone has an intermit enough knowledge of rubys 'require' to tell me if the following is valid ruby or not; class Something def initialize(mode) case mode when …
1
vote
1answer
10 views

How do you extend class level methods to a separate module in Rails?

Given a situation such as: module Extension def self.included(recipient) recipient.extend(ModelClassMethods) end module ModelClassMethods def self.msg puts 'Hi from module' …

1 2 3 4 5 488
15 30 50 per page