m3u8 0.6.2 → 0.6.3

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: 113427414ddf5ec31124dbcc67b905d8f4d29ab9
4
- data.tar.gz: 0aa8693ced40c395ade39b026ffce25f99fe49d1
3
+ metadata.gz: 423d91cc5175fd049a43ce26efff10b0ca1ad16f
4
+ data.tar.gz: 65b634315e86db26cdfdc6f19f89b245714bbb6e
5
5
  SHA512:
6
- metadata.gz: 12f12fe680621b9bd4bdb8eca4f5042de4f063772fff5ac331db34f12458131e47f1f8420a40af7072f85ed835e623ed4a6324cfb1a912f2e6d251ea11a3a3dc
7
- data.tar.gz: 038002c0468e4c332ad06d6b38ff748aa6bdead131e0b5eb356da563c85648a5609c87fe233a1343768a532aebe99e12a3b7853b4843d487997fe89193eb9640
6
+ metadata.gz: 48e8dd6e5122c35707fbbf8da5a2d2e2633c5083b4da1b7e993c5301f72d1a53a696129f744a26e2f44e6d965e890465084ee5b383ea6d2596510b63e8b49f18
7
+ data.tar.gz: a06803324c593c55cbe3943b28194262949bbc353e9562bb200487e0a96bd36b2b119078dfb5f5be7e31e961cd24610830f94c1e10ea20b2bbad492c4e7a6941
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ #### 0.6.3 (2/17/2016) - Merged pulled request #7 from [jviney](https://github.com/jviney), fixing bug with require order.
2
+
1
3
  #### 0.6.2 (2/16/2016) - Added support for EXT-X-SESSION-KEY tags. Merged pulled request #6 from [jviney](https://github.com/jviney), fixing bug with codec string value.
2
4
 
3
5
  #### 0.6.1 (8/15/2015) - Added support for EXT-X-PROGRAM-DATE-TIME tags.
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014 Seth Deckard
1
+ Copyright (c) 2016 Seth Deckard
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -184,3 +184,7 @@ M3u8::Reader is the class handles parsing if you want more control over the proc
184
184
  4. Commit your changes (`git commit -am 'Add some feature'`)
185
185
  5. Push to the branch (`git push origin my-new-feature`)
186
186
  6. Create a new Pull Request
187
+
188
+
189
+ ## License
190
+ MIT License - See [LICENSE.txt](https://github.com/sethdeckard/m3u8/blob/master/LICENSE.txt) for details.
data/lib/m3u8.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'stringio'
2
- Dir[File.dirname(__FILE__) + '/m3u8/*.rb'].each { |file| require file }
2
+ Dir[File.dirname(__FILE__) + '/m3u8/*.rb'].sort.each { |file| require file }
3
3
 
4
4
  # M3u8 provides parsing, generation, and validation of m3u8 playlists
5
5
  module M3u8
data/lib/m3u8/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # M3u8 provides parsing, generation, and validation of m3u8 playlists
2
2
  module M3u8
3
- VERSION = '0.6.2'
3
+ VERSION = '0.6.3'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: m3u8
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Deckard
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-16 00:00:00.000000000 Z
11
+ date: 2016-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler