m3u8 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/m3u8.rb +1 -0
  4. data/lib/m3u8/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 10053d8ebe04216b38b3853f64042f566e649ba8
4
- data.tar.gz: 0d485697ea68989dfae63eb50fe0eb2cee9b37f3
3
+ metadata.gz: 6b2614d9d908c839dafc092607bf69649df260af
4
+ data.tar.gz: 02778425365652e12cc615bc62eb810e0614fcc0
5
5
  SHA512:
6
- metadata.gz: 852df594c23783213b96b003c90d72f26a27de4f1e172b619d4d859ab511cca0ad527a247ab73bc7d2b85a51b4439ec0b2b6c6fa00223320bebe511f51ec807a
7
- data.tar.gz: 1b5f1fe3a50b326468d289d597cc34a32f4bae3fa35ca67c7a1c5612e97a4d330214c62da2a64e1289407abeffbc440cad3f962a807a4586ea46f008d19a3630
6
+ metadata.gz: 29ee0a5c8c0e2eca1386babce7215eab8131e58ced17c0c24f0261e760951487abf3f80f948b119db05fd7282c1df20ceda7634790764ec8a677910cfa1e8b80
7
+ data.tar.gz: 9293c9ef47eb92df90af04248f998c90513b80266478434c5b4ae1ac90d1ab2828776988105f578e8054c59be570cc70f0128b3ec6425176a01573b4c0a050fc
data/README.md CHANGED
@@ -62,7 +62,7 @@ Or install it yourself as:
62
62
  * Automatically generates the audio/video codec string based on names and options you are familar with.
63
63
  * Provides validation of input when adding playlists or segments.
64
64
  * Allows all options to be configured on a playlist (caching, version, etc.)
65
- * Can write playling to StringIO/File or to_s.
65
+ * Can write playlist to StringIO/File or to_s.
66
66
 
67
67
  ## Contributing
68
68
 
data/lib/m3u8.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'stringio'
1
2
  require 'm3u8/version'
2
3
  require 'm3u8/playlist'
3
4
  require 'm3u8/error'
data/lib/m3u8/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module M3u8
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: m3u8
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Deckard