vidload 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7f2ad6f46978b5cad7216f00d0c9a74bb2cd7ec537ddab8145d9f8bd0914cde
4
- data.tar.gz: 0146cabc4cb8f7f39c2b3adaa76293eefa86acf4233890a5116f4988ef590fdd
3
+ metadata.gz: b09d979bfbf863a31dc59989acb918041c1132e0001975383f4baf3d51f34681
4
+ data.tar.gz: 524ba3271e3c7e79505d7185d547c3c9413b0097e1be173ca8100f994fa36eaa
5
5
  SHA512:
6
- metadata.gz: c195fbe2098e82a3da3317f61cacf1c10f667a6195c0b4a0ebd9d38eee8cec222703cf00aeb1cba48ff14b9d0a98ffc6334ef5a14f4b74aad259683db471ff4c
7
- data.tar.gz: dd4a308b63da84aa3dcfc8796556f8f48fc53eeabb73c92d39ed2689181bc72b1bb99c776e67cd352db415d405b759975d40c3c85ae877bf898c0644bd95dadf
6
+ metadata.gz: 9549bd83c953a50dac61429be0118eab75b1a63feef3cfeb727efd4d45f2022a5b34bddcc5998eb29872a1269537dbe04a14c718e7bea1849dd53ca818e590f2
7
+ data.tar.gz: c0b17cc85d56bb53d5cd36a9f947c217ce38dd7e7e7c15aabd5f31b4cc6dbf6f1c6d41ec5a3fced8a7872667d8e88a69aff694c3326968dfeb228784461fdea5
@@ -54,7 +54,6 @@ module Vidload
54
54
 
55
55
  class Downloader
56
56
  def initialize(**kwargs)
57
- @max_lines = IO.console.winsize[0]
58
57
  @kwargs = kwargs
59
58
  end
60
59
 
@@ -96,7 +95,6 @@ module Vidload
96
95
  private
97
96
 
98
97
  def manage_video_download(page)
99
- @lines = [''] * @max_lines
100
98
  page.on('response', ->(resp) { listen_to_video_starts(page, resp) })
101
99
  navigate_to_url(@kwargs[:video_url], page)
102
100
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vidload
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vidload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patacode <pata.codegineer@gmail.com>