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.
Files changed (5) hide show
  1. data/Changelog +3 -0
  2. data/README +1 -1
  3. data/VERSION +1 -1
  4. data/setup.rb +4 -4
  5. metadata +2 -2
data/Changelog CHANGED
@@ -1,3 +1,6 @@
1
+ version 2.4.1 (2011-06-28)
2
+ * Bugfix release. Use FileUtils in setup script.
3
+
1
4
  version 2.4.0 (2011-06-28)
2
5
  * Drop deprecated gconf2 in favor of a yaml config.
3
6
  * Drop ppds-libs, incorporate class factory lib directly.
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.0
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.0
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
- File.copy File.join(path, 'data', 'pixmaps', 'grumblr.svg'),
29
- target, :verbose => true
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
- File.copy File.join(path, 'data', 'grumblr.desktop'),
38
- target, :verbose => true
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'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 4
8
- - 0
9
- version: 2.4.0
8
+ - 1
9
+ version: 2.4.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Paul Philippov