gtk2mp3 0.3.1 → 0.3.2
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/bin/gtk2mp3 +6 -3
- metadata +7 -8
data/bin/gtk2mp3
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
require 'rubygems'
|
|
3
|
-
gem 'gtk2applib', '~>
|
|
3
|
+
gem 'gtk2applib', '~> 10'
|
|
4
4
|
$help = <<EOT
|
|
5
5
|
|
|
6
6
|
You can also give it the default mp3 directory via command line...
|
|
@@ -18,13 +18,16 @@ program = Program.new( {
|
|
|
18
18
|
'website' => 'http://ruby-gnome-apps.blogspot.com/search/label/MP3',
|
|
19
19
|
'website-label' => 'Ruby-Gnome MP3',
|
|
20
20
|
'license' => 'GPL',
|
|
21
|
-
'copyright' => '2010-
|
|
21
|
+
'copyright' => '2010-12-07 13:04:23',
|
|
22
22
|
} )
|
|
23
23
|
|
|
24
24
|
begin
|
|
25
25
|
require 'gtk2mp3'
|
|
26
26
|
Gtk2MP3::Couple.load
|
|
27
|
-
program.window
|
|
27
|
+
program.window do |window|
|
|
28
|
+
Gtk2MP3::GUI.new(window,program)
|
|
29
|
+
window.show_all
|
|
30
|
+
end
|
|
28
31
|
rescue Exception
|
|
29
32
|
$!.puts_bang!
|
|
30
33
|
ensure
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gtk2mp3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.3.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- carlosjhr64@gmail.com
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-12-07 00:00:00 -08:00
|
|
19
19
|
default_executable: gtk2mp3
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -26,11 +26,10 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ~>
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash:
|
|
29
|
+
hash: 23
|
|
30
30
|
segments:
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
version: "9.2"
|
|
31
|
+
- 10
|
|
32
|
+
version: "10"
|
|
34
33
|
type: :runtime
|
|
35
34
|
version_requirements: *id001
|
|
36
35
|
description: a "Next!" button gui for mpg123
|