sportsflix 0.1.0.alpha.3 → 0.1.0.alpha.4

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
  SHA1:
3
- metadata.gz: a99541fa8ff39e6a4bafd53d63c91b16003ac819
4
- data.tar.gz: 708c5378bfca0115a85976988e7b7a85e2947b8b
3
+ metadata.gz: 40fa28d595579a84052a551b1f2a3b03ebe2158c
4
+ data.tar.gz: 584f735d4eb1e5d9ec058a617b3303f068407900
5
5
  SHA512:
6
- metadata.gz: 7848ac21763074600210f261e704d2129367b119a476c00aac7cc0bbcfc485d2161d6e6fd8b3f070cb1a123060afe2ed886a2523423c1938fb46e483ad4e6146
7
- data.tar.gz: cce75acb4a3215e03f43628062a46ccba9b40fb8256607a043d7890114b64634d1110a182a18dd52a917424179bcfbdaf510bb34979db1053e625f0df4f3cebd
6
+ metadata.gz: ab0c686fbbee30b91b8ed1e711b2e58afe02db89bf23d6bac8ac52f9a95bafda4c8aac8bbeb3216541718eaf7f180ffa3d77528564e0c1d0cc025838b96fbc55
7
+ data.tar.gz: 3e490dab3e357a875aacc0d0b624d7d70e8b57b61946be16ba62e5a8dbaab164bf77d2cd3f333c7666a4fbcbfd82281d40f89ae32c5ed4ba73ef0df938ccd74b
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sportsflix (0.1.0.alpha.3)
4
+ sportsflix (0.1.0.alpha.4)
5
5
  oga (~> 2.8)
6
6
  thor (~> 0.19.4)
7
7
 
data/README.md CHANGED
@@ -41,7 +41,7 @@ sflix watch --video-player-path="/Applications/VLC.app/Contents/MacOS/VLC"
41
41
  sflix watch # watch stream in the chosen player
42
42
 
43
43
  Options:
44
- vvv, [--verbose], [--no-verbose]
44
+ [--verbose], [--no-verbose]
45
45
  o, [--offset=N]
46
46
  # Default: 0
47
47
  f, [--video-format=VIDEO-FORMAT]
@@ -49,10 +49,12 @@ sflix watch --video-player-path="/Applications/VLC.app/Contents/MacOS/VLC"
49
49
  c, [--club=CLUB]
50
50
  p, [--video-player=VIDEO-PLAYER]
51
51
  # Default: vlc
52
- pp, [--video-player-path=VIDEO-PLAYER-PATH]
52
+ [--video-player-path=VIDEO-PLAYER-PATH]
53
53
  # Default: vlc
54
- ni, [--no-interactive]
54
+ [--interactive], [--no-interactive]
55
55
  s, [--server-only], [--no-server-only]
56
+ [--proxy-delay=N]
57
+ # Default: 10
56
58
 
57
59
  ## Development
58
60
 
@@ -13,15 +13,15 @@ module Sportsflix
13
13
  DEFAULT_VIDEO_PLAYER_PATH = DEFAULT_VIDEO_PLAYER
14
14
  DEFAULT_PROXY_DELAY = 10
15
15
 
16
- class_option('verbose', { :aliases => :vvv, :type => :boolean, :default => false })
16
+ class_option('verbose', { :type => :boolean, :default => false })
17
17
  class_option('offset', { :aliases => :o, :type => :numeric, :default => DEFAULT_OFFSET })
18
18
  class_option('video-format', { :aliases => :f, :type => :string, :default => DEFAULT_VIDEO_FORMAT })
19
19
  class_option('club', { :aliases => :c, :type => :string })
20
20
  class_option('video-player', { :aliases => :p, :type => :string, :default => DEFAULT_VIDEO_PLAYER })
21
- class_option('video-player-path', { :aliases => :pp, :type => :string, :default => DEFAULT_VIDEO_PLAYER_PATH })
22
- class_option('no-interactive', { :aliases => :ni, :type => :boolean, :default => false })
21
+ class_option('video-player-path', { :type => :string, :default => DEFAULT_VIDEO_PLAYER_PATH })
22
+ class_option('interactive', { :type => :boolean, :default => false })
23
23
  class_option('server-only', { :aliases => :s, :type => :boolean, :default => false })
24
- class_option('proxy-delay', { :aliases => :pd, :type => :numeric, :default => DEFAULT_PROXY_DELAY })
24
+ class_option('proxy-delay', { :type => :numeric, :default => DEFAULT_PROXY_DELAY })
25
25
 
26
26
  desc('watch', 'watch stream in the chosen player')
27
27
  def watch
@@ -1,3 +1,3 @@
1
1
  module Sportsflix
2
- VERSION = '0.1.0.alpha.3'
2
+ VERSION = '0.1.0.alpha.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sportsflix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.alpha.3
4
+ version: 0.1.0.alpha.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rodrigo Fernandes