Search Results

3
votes
3answers
183 views

Syntax for putting a block on a single line

So I've got a Ruby method like this: def something(variable, &block) .... end And I want to call it like this: something 'hello' { do_it } …
1
vote
3answers
811 views

Rails - setting multiple layouts for a multipart email with mailer templates

Hi there, So Rails 2.2 added mailer layouts, which is great, except that I can't figure out how to make them work when I'm sending a multipart email..it's wrapping my mail content with the …
7
votes

How do you run a single test/spec file in RSpec?

Or you can skip rake and use the 'spec' command: spec path/to/spec/file.rb In your case I think as long as your ./spec/db_spec.rb file includes the appropriate hel …
2
votes

How to incorporate Interactive Ruby into my development process?

I don't tend to use irb directly that frequently, as I tend to be inside rails and so use script/console a bunch, but I do like using the ruby debugger (Ruby Debug gem). It lets you set a breakpoin …
0
votes

What is the best way to parse a web page in Ruby?

I always really like what Ilya Grigorik writes, and he wrote up a nice post about using hpricot. …
1
vote

Ruby: How to break a potentially unicode string into bytes

You could try including the ActiveSupport::CoreExtensions::String::Unicode module fr …
0
votes

How do I view the HTTP response to an ActiveResource request?

Or my method of getting into things when I don't know the exact internals is literally just to throw in a "debugger" statement, start up the server using "script/server --debugger" and then step th …
3
votes

Sharing code in respond_to blocks

If I'm reading this right, it looks like find_current_membership is your before_filter method, is that right? eg: class SomeController < ApplicationCont …
11
votes

Paypal Website Payments Standard with a Ruby/Rails application

I would also check out ActiveMerchant. Here's a bit more info …
2
votes

Where is the best place to add methods to the Integer class in Rails?

Why not just: class Feet def self.in_miles(feet) feet/5280 end end usage: Feet.in_miles 2313 Or maybe look at it the othe …