grumblr 2.4.0 → 2.4.1
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/Changelog +3 -0
- data/README +1 -1
- data/VERSION +1 -1
- data/setup.rb +4 -4
- metadata +2 -2
data/Changelog
CHANGED
data/README
CHANGED
@@ -33,7 +33,7 @@ from a GTK-enabled Linux desktop environment.
|
|
33
33
|
Change directory to the installed gem folder (may vary) and run
|
34
34
|
setup script to copy images and a launcher to their places:
|
35
35
|
|
36
|
-
$ cd /usr/lib/ruby/gems/1.8/gems/grumblr-2.4.
|
36
|
+
$ cd /usr/lib/ruby/gems/1.8/gems/grumblr-2.4.1
|
37
37
|
$ sudo ruby setup.rb
|
38
38
|
|
39
39
|
=== Homepage ===
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.4.
|
1
|
+
2.4.1
|
data/setup.rb
CHANGED
@@ -25,8 +25,8 @@ Gem.path.each do |path|
|
|
25
25
|
puts " - #{target} exists, skipping."
|
26
26
|
else
|
27
27
|
puts " + #{target} does not exist. copying"
|
28
|
-
|
29
|
-
|
28
|
+
FileUtils.copy File.join(path, 'data', 'pixmaps', 'grumblr.svg'),
|
29
|
+
target, :verbose => true
|
30
30
|
end
|
31
31
|
|
32
32
|
target = '/usr/share/applications/grumblr.desktop'
|
@@ -34,8 +34,8 @@ Gem.path.each do |path|
|
|
34
34
|
puts " - #{target} exists, skipping."
|
35
35
|
else
|
36
36
|
puts " + #{target} does not exist, copying"
|
37
|
-
|
38
|
-
|
37
|
+
FileUtils.copy File.join(path, 'data', 'grumblr.desktop'),
|
38
|
+
target, :verbose => true
|
39
39
|
end
|
40
40
|
|
41
41
|
target = '/usr/local/bin/grumblr'
|