Class: Simple2ch::Dat
- Inherits:
-
Object
- Object
- Simple2ch::Dat
- Defined in:
- lib/simple2ch/dat.rb
Instance Attribute Summary collapse
-
#thread_key ⇒ String
readonly
スレッドキー.
-
#title ⇒ String
readonly
タイトル.
-
#url ⇒ Bbs2chUrlValidator::UrlInfo
readonly
Dat URL.
Instance Method Summary collapse
-
#initialize(thre) ⇒ Dat
constructor
A new instance of Dat.
-
#kako_log? ⇒ Boolean
Datを解析して過去ログかどうかを返す.
-
#responses ⇒ Array<Res>
Datを解析して、レスを返す.
Constructor Details
#initialize(thre) ⇒ Dat
Returns a new instance of Dat.
11 12 13 14 15 16 17 |
# File 'lib/simple2ch/dat.rb', line 11 def initialize(thre) @thre = thre @thread_key = thre.thread_key @data = nil @responses = nil @is_kako_log = nil end |
Instance Attribute Details
#thread_key ⇒ String (readonly)
Returns スレッドキー.
4 5 6 |
# File 'lib/simple2ch/dat.rb', line 4 def thread_key @thread_key end |
#title ⇒ String (readonly)
Returns タイトル.
6 7 8 |
# File 'lib/simple2ch/dat.rb', line 6 def title @title end |
#url ⇒ Bbs2chUrlValidator::UrlInfo (readonly)
Returns dat URL.
8 9 10 |
# File 'lib/simple2ch/dat.rb', line 8 def url @url end |
Instance Method Details
#kako_log? ⇒ Boolean
Datを解析して過去ログかどうかを返す
28 29 30 31 |
# File 'lib/simple2ch/dat.rb', line 28 def kako_log? parse_dat if @is_kako_log.nil? @is_kako_log end |
#responses ⇒ Array<Res>
Datを解析して、レスを返す
21 22 23 24 |
# File 'lib/simple2ch/dat.rb', line 21 def responses parse_dat unless @responses @responses end |