This post originated from an RSS feed registered with Ruby Buzz
by Eloy Duran.
Original Post: Just for the fun of it.
Feed Title: SuperAlloy, because it's hot!
Feed URL: http://www.superalloy.nl/blog/?feed=rss2&cat=2
Feed Description: Thoughts, code, release notes all ruby/rubycocoa/rails related.
Actually what I wanted to be able to do was:
class Foo
attr_accessor :bar, :baz
def setBar(value)
@bar = value
end
def setBaz(value)
@baz = value
end
end
foo = Foo.new
with foo do
bar = 'blah'
baz = 'more blah'
end
Unfortunately I’ve come to the conclusion [...]