useragent_stream_specs 0.0.1 → 1.0.0
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 +4 -4
- data/lib/useragent_stream_specs.rb +4 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38def161b5823afdd6a7d78cd669df2cb0007fcf
|
4
|
+
data.tar.gz: c6fc404cf3251c83599ff01157ab14489a624be5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e13e5ac7d45a5215f9da7ea99c97a09e5cb96742d9f409eeb96549cb8001da70201d1e1a720cce07503e1f90ec82bdb720144629bc77dd1a1534169e6d4e597
|
7
|
+
data.tar.gz: 434c86ebe87869a624cc52e66761ce4e006dcf029d43fb5e56b91de48cfb0c7032162d1d55517eacf533a8efad9119399fa741622d4db67c5dc5c4c1f2ca3b49
|
@@ -1,8 +1,7 @@
|
|
1
1
|
module UseragentStreamSpecs
|
2
2
|
|
3
3
|
unless defined? USER_AGENTS
|
4
|
-
USER_AGENTS =
|
5
|
-
{
|
4
|
+
USER_AGENTS = {
|
6
5
|
'ie11, windows 10' => {
|
7
6
|
:device => 'desktop',
|
8
7
|
:player_id => 'flash',
|
@@ -285,9 +284,7 @@ module UseragentStreamSpecs
|
|
285
284
|
:user_agent => 'Mozilla/5.0 (Unknown; Linux) AppleWebKit/538.1 (KHTML, like Gecko) kazoku/0.2 Safari/538.1 (ADB; TNR-5720SX)',
|
286
285
|
:default_player_settings_tv => {'preferred-player-odm' => 'hls', 'preferred-player-live' => 'hls', 'bitrate' => '3500 kbps'},
|
287
286
|
:default_player_settings_radio => {'preferred-player-odm' => 'hls', 'preferred-player-live' => 'hls', 'bitrate' => '3500 kbps'}
|
288
|
-
|
289
|
-
|
290
|
-
}
|
291
|
-
|
292
|
-
end
|
287
|
+
},
|
288
|
+
}
|
293
289
|
end
|
290
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: useragent_stream_specs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aril Spetalen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A specification of what stream types different clients use. The hash
|
14
14
|
is intended used as reference for tests.
|