1
vote
Automatic code quality tool for Ruby?
Another nice tool, although in early stages according to the author is reek:
http://reek.rubyforge.org/
reek currently includ …
0
votes
When to use lambda, when to use Proc.new?
A good way to see it is that lambdas are executed in their own scope (as if it was a method call), while Procs may be viewed as executed inline with the calling method, at least that's a good way o …
3
votes
Gettings started with Ruby on Rails 2.0 for Windows
Also you may want to look into NetBeans, it has great support for ruby and rails. They also provide several focused tutorials and even viedos.
…
1
vote
ruby on rails state machines
Maybe this is an overshoot, but there's a rails integrable bpm (workflow) engine called openwferu:
http://openwferu.rubyforge.org/ …
2
votes
What is the best way to find and replace “!= null” code with andand?
Here's something to get you started, I wonder if this can be generalized more without having to generate the regexp programatically
line = "user && user.name && user …
1
vote
Get Filename from file path in Ruby
Note that double quotes strings escape \'s.
'C:\projects\blah.dll'.split('\\').last
…
0
votes
How can you conditionally remove entire columns from a two dimensional array in Ruby?
A shot in the dark, but if the criteria is simple enough, and you can somehow sample the data to see what columns you need to remove, maybe you can skip importing the columns in the first place, if …
0
votes
Cool way to call methods on multiple objects in Ruby?
On a side note, Symbol#to_proc can have performance issues, so use it in cases when readability is worth it.
…
1
vote
How do I calculate a String’s width in Ruby?
You could attempt to create a standarized "width proportion table" to calculate an aproximation, basically you need to store the width of each character and then traverse the string adding up the w …
2
votes
Ruby: Object.to_a replacement
You can take the duck typing aproach if that suits the problem better, make a list of all the methods you need, and check if the object already have them, if not, make it an array:
…
9
votes
To use self. or not.. in Rails
A quick explanation of what that means:
In ruby, you can define methods on a particular object:
a = "hello"
def a.informal
"hi"
end
a.informal
=> "hi"
…
4
votes
What is the best way to determine which source files are no longer needed?
As with any refactoring, start by writing tests, once you have those, you can either delete one file at the time and undo if the tests fail or use …
1
vote
Language in a Sandbox in Rails
I came across This article on hackety.org this morning. Maybe it can serve you as a guide into the right direc …
0
votes
Programming Language Choice - Longevity and Community
Not a direct asnwer, but "you are doing it wrong" :D
Seriously, you first choice should be what your developers want to use, not what the "management" wants them to use for arbitrary reason …
5
votes
ruby: can a block affect local variables in a method?
First of all, block.call() is done with yield, and you don't need the &block parameter that way.
You can't normally do what you want, blocks are binded when they are created, and inside …
