method

find_pair

find_pair(key)
private

No documentation available.

# File railties/lib/initializer.rb, line 1004
    def find_pair(key)
      self.each { |i| return i if i.first == key }
      return false
    end