xspf 0.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.
- data/AUTHORS +7 -0
- data/ChangeLog +19 -0
- data/README +26 -0
- data/coverage/doc-create_doc_rb.html +639 -0
- data/coverage/index.html +259 -0
- data/coverage/lib-xspf_rb.html +948 -0
- data/doc/created.rid +1 -0
- data/doc/fr_class_index.html +30 -0
- data/doc/fr_file_index.html +28 -0
- data/doc/fr_method_index.html +71 -0
- data/doc/index.html +24 -0
- data/examples/example.rb +36 -0
- data/examples/playlist-ext.xspf +43 -0
- data/examples/playlist.xspf +34 -0
- data/lib/xspf.rb +319 -0
- data/lib/xspf2html.xsl +212 -0
- data/lib/xspf2m3u.xsl +20 -0
- data/lib/xspf2smil.xsl +76 -0
- data/lib/xspf2soundblox.xsl +65 -0
- data/test/tc_output_formats.rb +205 -0
- data/test/tc_playlist.rb +90 -0
- data/test/tc_track.rb +85 -0
- data/test/tc_tracklist.rb +69 -0
- data/test/tc_xspf.rb +64 -0
- data/test/ts_xspf.rb +9 -0
- data/xspf-expanded.rb +152 -0
- metadata +84 -0
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: xspf
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: "0.3"
|
7
|
+
date: 2006-10-20 00:00:00 +02:00
|
8
|
+
summary: A library to parse XML Shareable Playlist Format (XSPF) files
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: pgquiles@elpauer.org
|
12
|
+
homepage: http://xspf.rubyforge.org
|
13
|
+
rubyforge_project: http://xspf.rubyforge.org
|
14
|
+
description: XSPF for Ruby is a pure-Ruby library to parse XML Shareable Playlist Format documents. It provides an easy to use API. The only dependency is Ruby/XSLT (http://raa.ruby-lang.org/project/ruby-xslt/)
|
15
|
+
autorequire: xspf
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.8.2
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Pau Garcia i Quiles
|
31
|
+
files:
|
32
|
+
- coverage/index.html
|
33
|
+
- coverage/lib-xspf_rb.html
|
34
|
+
- coverage/doc-create_doc_rb.html
|
35
|
+
- doc/created.rid
|
36
|
+
- doc/files
|
37
|
+
- doc/classes
|
38
|
+
- doc/fr_file_index.html
|
39
|
+
- doc/fr_class_index.html
|
40
|
+
- doc/fr_method_index.html
|
41
|
+
- doc/index.html
|
42
|
+
- examples/playlist.xspf
|
43
|
+
- examples/playlist-ext.xspf
|
44
|
+
- examples/example.rb
|
45
|
+
- lib/xspf.rb
|
46
|
+
- lib/xspf2m3u.xsl
|
47
|
+
- lib/xspf2html.xsl
|
48
|
+
- lib/xspf2smil.xsl
|
49
|
+
- lib/xspf2soundblox.xsl
|
50
|
+
- test/tc_xspf.rb
|
51
|
+
- test/ts_xspf.rb
|
52
|
+
- test/tc_playlist.rb
|
53
|
+
- test/tc_tracklist.rb
|
54
|
+
- test/tc_track.rb
|
55
|
+
- test/tc_output_formats.rb
|
56
|
+
- AUTHORS
|
57
|
+
- ChangeLog
|
58
|
+
- README
|
59
|
+
- xspf-expanded.rb
|
60
|
+
test_files:
|
61
|
+
- test/ts_xspf.rb
|
62
|
+
rdoc_options: []
|
63
|
+
|
64
|
+
extra_rdoc_files:
|
65
|
+
- AUTHORS
|
66
|
+
- ChangeLog
|
67
|
+
- README
|
68
|
+
- xspf-expanded.rb
|
69
|
+
executables: []
|
70
|
+
|
71
|
+
extensions: []
|
72
|
+
|
73
|
+
requirements:
|
74
|
+
- Ruby/XSLT >= 0.9.2 (http://raa.ruby-lang.org/project/ruby-xslt/)
|
75
|
+
dependencies:
|
76
|
+
- !ruby/object:Gem::Dependency
|
77
|
+
name: ruby-xslt
|
78
|
+
version_requirement:
|
79
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 0.9.2
|
84
|
+
version:
|