2
votes
Converting an empty string into nil in Ruby
If you're not ashamed of monkeypatching and abusing syntax, this would work:
class String
def | x
if empty? then x else self end
end
end
Then you can say …
9
votes
What does map(&:name) mean in Ruby?
It's shorthand for tags.map(:name.to_proc).join(' ')
If foo is an object with a to_proc method, then you can pass it to a method as &foo …
1
vote
How come when I run ruby.exe / IRB all I get is a blank DOS shell?
More precisely, running ruby by itself still gives you a ruby interpreter, but you'll miss these features of IRB: The interactive prompt with line editing, immediate execution, and aut …
2
votes
is this a valid ruby syntax ?
Here's a way to call step.include? on each of the arguments until one of them returns true:
if ["apples", "banana", "cheese"].any? {|x| step.include? x}
…
4
votes
Method definition without a name in Ruby on Rails
In this case, begin is just the name of a method; it's unrelated to the begin…rescue syntax for handling exceptions (in which the begin is someti …
2
votes
Closures in Ruby
One difference is that while Scheme has only one kind of procedure, Ruby has four. Most of the time, they behave similarly enough to your standard lambda, but you should try to …
3
votes
Is it possible to compare private attributes in Ruby?
There are several methods
Getter:
class X
attr_reader :a
def m( other )
a == other.a
end
end
instance_eval:
class X
…
1
vote
Setting variables with blocks in ruby
Although others have given more idiomatic solutions to your specific problem, there's actually a cool method Object#instance_eval, which is a standard trick that many Ruby DSLs use. It …
4
votes
Normalizing line endings in Ruby
Best is just to handle the two cases that you want to change specifically and not try to get too clever:
s.gsub /\r\n?/, "\n"
…
3
votes
Removing text within parentheses (parentheses within parentheses prob)
Looks like you need to be greedy, by removing the ?
>> "This is (a test (string))".gsub(/\(.*\)/, "")
=> "This is "
That makes it go to the l …
