vote up 4 vote down star
4

I have a Builder class that lets you add to one of it's instance variables:

class Builder
    def initialize
        @lines = []
    end

    def lines
        block_given? ? yield(self) : @lines
    end

    def add_line( text )
        @lines << text
    end
end

Now, how do I change this

my_builder = Builder.new
my_builder.lines { |b|
    b.add_line "foo"
    b.add_line "bar"
}
p my_builder.lines # => ["foo", "bar"]

Into this?

my_builder = Builder.new
my_builder.lines {
    add_line "foo"
    add_line "bar"
}
p my_builder.lines # => ["foo", "bar"]
flag

2 Answers

vote up 7 vote down check
class Builder
    def initialize
        @lines = []
    end

    def lines(&block)
        block_given? ? instance_eval(&block) : @lines
    end

    def add_line( text )
        @lines << text
    end
end

my_builder = Builder.new
my_builder.lines {
    add_line "foo"
    add_line "bar"
}
p my_builder.lines # => ["foo", "bar"]
link|flag
1  
Couldn't be any more perfect. Thank you! – c00lryguy Sep 28 at 3:03
vote up 0 vote down

You can also use the method use in ruby best practice using the length of arguments with arity:

class Foo

attr_accessor :list

def initialize
   @list=[]
end

def bar(&blk)

  blk.arity>0 ? blk.call(self) : instance_eval(&blk)

end

end

x=Foo.new

x.bar do list << 1 list << 2 list << 3 end

x.bar do |foo| foo.list << 4 foo.list << 5 foo.list << 6 end

puts x.list.inspect

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.