m3uzi 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,7 +8,7 @@ class M3Uzi
8
8
 
9
9
  def attribute_string
10
10
  s = []
11
- s << "PROGRAM-ID=#{program_id.to_i || 1}"
11
+ s << "PROGRAM-ID=#{(program_id || 1).to_i}"
12
12
  s << "BANDWIDTH=#{bandwidth.to_i}"
13
13
  s << "CODECS=\"#{codecs}\"" if codecs
14
14
  s << "RESOLUTION=#{resolution}" if resolution
@@ -1,3 +1,3 @@
1
1
  class M3Uzi
2
- VERSION = '0.4.2'
2
+ VERSION = '0.4.3'
3
3
  end
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: m3uzi
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ hash: 9
5
+ prerelease:
5
6
  segments:
6
7
  - 0
7
8
  - 4
8
- - 2
9
- version: 0.4.2
9
+ - 3
10
+ version: 0.4.3
10
11
  platform: ruby
11
12
  authors:
12
13
  - Brandon Arbini
@@ -15,7 +16,7 @@ autorequire:
15
16
  bindir: bin
16
17
  cert_chain: []
17
18
 
18
- date: 2011-12-12 00:00:00 -08:00
19
+ date: 2011-12-14 00:00:00 -08:00
19
20
  default_executable:
20
21
  dependencies: []
21
22
 
@@ -53,23 +54,27 @@ rdoc_options: []
53
54
  require_paths:
54
55
  - lib
55
56
  required_ruby_version: !ruby/object:Gem::Requirement
57
+ none: false
56
58
  requirements:
57
59
  - - ">="
58
60
  - !ruby/object:Gem::Version
61
+ hash: 3
59
62
  segments:
60
63
  - 0
61
64
  version: "0"
62
65
  required_rubygems_version: !ruby/object:Gem::Requirement
66
+ none: false
63
67
  requirements:
64
68
  - - ">="
65
69
  - !ruby/object:Gem::Version
70
+ hash: 3
66
71
  segments:
67
72
  - 0
68
73
  version: "0"
69
74
  requirements: []
70
75
 
71
76
  rubyforge_project:
72
- rubygems_version: 1.3.6
77
+ rubygems_version: 1.3.9.2
73
78
  signing_key:
74
79
  specification_version: 3
75
80
  summary: Read and write M3U files with (relative) ease.