Method: ContentLinkParser#link_data
- Defined in:
- lib/content_link_parser.rb
#link_data ⇒ Object
Returns a hash with arrays of links
35 36 37 38 39 40 41 |
# File 'lib/content_link_parser.rb', line 35 def link_data data = {} [:tags].keys.each do |key| data[key.to_sym] = self.instance_eval(key.to_s) end data end |