So I am parsing a page with Nokogiri and am storing values like this:
contents[link[:href]] = content_page.css("p a")
copy = content_page.xpath('//p/text()[1]').text
Then I was pushing them on my my_listing array like this:
my_listing << contents[link[:href]]
my_listing << copy
But, what that does is creates a 2-element array for each entry.
So contents[link[:href]] is stored in my_listing[0], while
copy is stored in my_listing[1].
Whereas, what I would want to happen is, my_listing[0][0] == contents[link[:href]] && my_listing[0][1] == copy.
How do I do this?