irecorder 0.0.7
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/MIT-LICENSE +19 -0
- data/README +45 -0
- data/Rakefile +72 -0
- data/bin/irecorder +9 -0
- data/bin/irecorder.rb +885 -0
- data/ext/Rakefile +27 -0
- data/lib/bbcnet.rb +271 -0
- data/lib/cache.rb +121 -0
- data/lib/download.rb +441 -0
- data/lib/irecorder_resource.rb +264 -0
- data/lib/logwin.rb +119 -0
- data/lib/mylibs.rb +462 -0
- data/lib/programmewin.rb +185 -0
- data/lib/settings.rb +376 -0
- data/lib/taskwin.rb +363 -0
- data/resources/bbcstyle.qss +443 -0
- metadata +107 -0
metadata
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: irecorder
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 17
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 7
|
10
|
+
version: 0.0.7
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- ruby.twiddler
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-09-14 00:00:00 +09:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: nokogiri
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 7
|
30
|
+
segments:
|
31
|
+
- 1
|
32
|
+
- 4
|
33
|
+
- 0
|
34
|
+
version: 1.4.0
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
description: |
|
38
|
+
BBC iPlayer like audio recorder with KDE GUI.
|
39
|
+
You can browse BBC Radio programmes and click to download stream file.
|
40
|
+
files will be converted to mp3 files automatically.
|
41
|
+
irecorder allow to play without any other browser or play on your prefered browser.
|
42
|
+
like mplayer.
|
43
|
+
irecorder require kdebindings.
|
44
|
+
|
45
|
+
email: ruby.twiddler at gmail.com
|
46
|
+
executables:
|
47
|
+
- irecorder.rb
|
48
|
+
extensions:
|
49
|
+
- ext/Rakefile
|
50
|
+
extra_rdoc_files:
|
51
|
+
- README
|
52
|
+
files:
|
53
|
+
- bin/irecorder.rb
|
54
|
+
- bin/irecorder
|
55
|
+
- lib/bbcnet.rb
|
56
|
+
- lib/download.rb
|
57
|
+
- lib/logwin.rb
|
58
|
+
- lib/mylibs.rb
|
59
|
+
- lib/settings.rb
|
60
|
+
- lib/taskwin.rb
|
61
|
+
- lib/programmewin.rb
|
62
|
+
- lib/cache.rb
|
63
|
+
- lib/irecorder_resource.rb
|
64
|
+
- README
|
65
|
+
- MIT-LICENSE
|
66
|
+
- Rakefile
|
67
|
+
- resources/bbcstyle.qss
|
68
|
+
- ext/Rakefile
|
69
|
+
has_rdoc: true
|
70
|
+
homepage: http://github.com/rubytwiddler/irecorder/wiki
|
71
|
+
licenses: []
|
72
|
+
|
73
|
+
post_install_message:
|
74
|
+
rdoc_options: []
|
75
|
+
|
76
|
+
require_paths:
|
77
|
+
- lib
|
78
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
79
|
+
none: false
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
hash: 3
|
84
|
+
segments:
|
85
|
+
- 0
|
86
|
+
version: "0"
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
none: false
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
hash: 3
|
93
|
+
segments:
|
94
|
+
- 0
|
95
|
+
version: "0"
|
96
|
+
requirements:
|
97
|
+
- korundum4
|
98
|
+
- qtwebkit
|
99
|
+
- kio
|
100
|
+
- ktexteditor
|
101
|
+
rubyforge_project:
|
102
|
+
rubygems_version: 1.3.7
|
103
|
+
signing_key:
|
104
|
+
specification_version: 3
|
105
|
+
summary: BBC iPlayer like audio recorder with KDE GUI.
|
106
|
+
test_files: []
|
107
|
+
|