29 30 31 32 33 34 35
# File 'lib/support/core_ext.rb', line 29 def to_h if RUBY_VERSION >= '1.8.7' Hash[self] else inject({}) { |h, a| h[a.first] = a.last; h } end end