Class: NicoQuery::ObjectMapper::MylistRSS::Item::Description
- Inherits:
-
Object
- Object
- NicoQuery::ObjectMapper::MylistRSS::Item::Description
- Defined in:
- lib/nicoquery/object_mapper/mylist_rss.rb
Instance Attribute Summary collapse
-
#raw_text ⇒ Object
readonly
Returns the value of attribute raw_text.
Instance Method Summary collapse
- #community_references ⇒ Object
-
#initialize(raw_text) ⇒ Description
constructor
A new instance of Description.
- #movie_references ⇒ Object
- #mylist_references ⇒ Object
- #seiga_references ⇒ Object
- #text ⇒ Object
Constructor Details
#initialize(raw_text) ⇒ Description
Returns a new instance of Description.
132 133 134 |
# File 'lib/nicoquery/object_mapper/mylist_rss.rb', line 132 def initialize(raw_text) @raw_text = raw_text.to_s end |
Instance Attribute Details
#raw_text ⇒ Object (readonly)
Returns the value of attribute raw_text.
130 131 132 |
# File 'lib/nicoquery/object_mapper/mylist_rss.rb', line 130 def raw_text @raw_text end |
Instance Method Details
#community_references ⇒ Object
150 151 152 |
# File 'lib/nicoquery/object_mapper/mylist_rss.rb', line 150 def community_references text.scan /co\d{1,}/ end |
#movie_references ⇒ Object
141 142 143 144 |
# File 'lib/nicoquery/object_mapper/mylist_rss.rb', line 141 def movie_references # is this the high road? text.scan(/((sm|nm)\d{1,})/).map {|e| e[0]} end |
#mylist_references ⇒ Object
146 147 148 |
# File 'lib/nicoquery/object_mapper/mylist_rss.rb', line 146 def mylist_references text.scan /(?<=mylist\/)\d{1,}/ end |
#seiga_references ⇒ Object
154 155 156 |
# File 'lib/nicoquery/object_mapper/mylist_rss.rb', line 154 def seiga_references text.scan /im\d{1,}/ end |
#text ⇒ Object
136 137 138 139 |
# File 'lib/nicoquery/object_mapper/mylist_rss.rb', line 136 def text @raw_text.scan /(?<=class\=\"nico\-description\"\>).{1,}(?=\<\/p\>)/ $& end |