Class: ZMediumFetcher::Progress
- Inherits:
-
Object
- Object
- ZMediumFetcher::Progress
- Defined in:
- lib/ZMediumFetcher.rb
Instance Attribute Summary collapse
-
#currentPostIndex ⇒ Object
Returns the value of attribute currentPostIndex.
-
#currentPostParagraphIndex ⇒ Object
Returns the value of attribute currentPostParagraphIndex.
-
#message ⇒ Object
Returns the value of attribute message.
-
#postPath ⇒ Object
Returns the value of attribute postPath.
-
#totalPostParagraphsLength ⇒ Object
Returns the value of attribute totalPostParagraphsLength.
-
#totalPostsLength ⇒ Object
Returns the value of attribute totalPostsLength.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
Instance Attribute Details
#currentPostIndex ⇒ Object
Returns the value of attribute currentPostIndex.
36 37 38 |
# File 'lib/ZMediumFetcher.rb', line 36 def currentPostIndex @currentPostIndex end |
#currentPostParagraphIndex ⇒ Object
Returns the value of attribute currentPostParagraphIndex.
36 37 38 |
# File 'lib/ZMediumFetcher.rb', line 36 def currentPostParagraphIndex @currentPostParagraphIndex end |
#message ⇒ Object
Returns the value of attribute message.
36 37 38 |
# File 'lib/ZMediumFetcher.rb', line 36 def @message end |
#postPath ⇒ Object
Returns the value of attribute postPath.
36 37 38 |
# File 'lib/ZMediumFetcher.rb', line 36 def postPath @postPath end |
#totalPostParagraphsLength ⇒ Object
Returns the value of attribute totalPostParagraphsLength.
36 37 38 |
# File 'lib/ZMediumFetcher.rb', line 36 def totalPostParagraphsLength @totalPostParagraphsLength end |
#totalPostsLength ⇒ Object
Returns the value of attribute totalPostsLength.
36 37 38 |
# File 'lib/ZMediumFetcher.rb', line 36 def totalPostsLength @totalPostsLength end |
#username ⇒ Object
Returns the value of attribute username.
36 37 38 |
# File 'lib/ZMediumFetcher.rb', line 36 def username @username end |
Instance Method Details
#printLog ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/ZMediumFetcher.rb', line 38 def printLog() info = "" if !username.nil? if !currentPostIndex.nil? && !totalPostsLength.nil? info += "[#{username}(#{currentPostIndex}/#{totalPostsLength})]" else info += "[#{username}]" end end if !postPath.nil? if info != "" info += "-" end if !currentPostParagraphIndex.nil? && !totalPostParagraphsLength.nil? info += "[#{postPath[0..10]}...(#{currentPostParagraphIndex}/#{totalPostParagraphsLength})]" else info += "[#{postPath[0..10]}...]" end end if !.nil? if info != "" info += "-" end info += end if info != "" puts info end end |