m3uzi 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/m3uzi/file.rb +2 -6
  2. data/lib/m3uzi/version.rb +1 -1
  3. metadata +8 -5
data/lib/m3uzi/file.rb CHANGED
@@ -1,15 +1,11 @@
1
1
  class M3Uzi
2
-
3
2
  class File
4
3
 
5
4
  attr_accessor :path, :duration, :description
6
5
 
7
6
  def attribute_string
8
- s = []
9
- s << duration
10
- s << description if description
11
- s.join(',')
7
+ "#{duration},#{description}"
12
8
  end
13
- end
14
9
 
10
+ end
15
11
  end
data/lib/m3uzi/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class M3Uzi
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
metadata CHANGED
@@ -1,26 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: m3uzi
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 3
10
- version: 0.1.3
9
+ - 4
10
+ version: 0.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Brandon Arbini
14
+ - Justin Greer
14
15
  autorequire:
15
16
  bindir: bin
16
17
  cert_chain: []
17
18
 
18
- date: 2010-12-30 00:00:00 -06:00
19
+ date: 2011-01-09 00:00:00 -06:00
19
20
  default_executable:
20
21
  dependencies: []
21
22
 
22
23
  description: Read and write M3U files with (relative) ease.
23
- email: brandon@zencoder.com
24
+ email:
25
+ - brandon@zencoder.com
26
+ - justin@zencoder.com
24
27
  executables: []
25
28
 
26
29
  extensions: []