1
2
3
4
	def hashify(object_array)
		h = Hash.new
		object_array.each do |x|
...

Ruby On Less typing same functionality

by lusis.myopenid.com, April 10, 2008 15:27

This is what the final refa...

Avatar Talk

Ruby On Less typing same functionality

by lusis.myopenid.com, April 10, 2008 14:26

Well I realize later in the...

Avatar Talk
1
2
3
4
def hashify(object_array)
		h = Hash.new
		object_array.each do |x|
...

Ruby Less typing same functionality

by lusis.myopenid.com, April 09, 2008 16:40, 4 refactorings, tagged with ruby nagios

I know this can be done but...

Avatar Talk