[DRE-commits] r5768 - trunk/libfakefs-ruby/debian

Tobias Grimm tiber-guest at alioth.debian.org
Sun Aug 15 20:36:07 UTC 2010


Author: tiber-guest
Date: 2010-08-15 20:36:05 +0000 (Sun, 15 Aug 2010)
New Revision: 5768

Modified:
   trunk/libfakefs-ruby/debian/changelog
   trunk/libfakefs-ruby/debian/control
   trunk/libfakefs-ruby/debian/rules
Log:
* Load tests with absolute path - Ruby 1.9.2 doesn't include '.' in it's
  load path anymore
* Standards-Version: 3.9.1

Modified: trunk/libfakefs-ruby/debian/changelog
===================================================================
--- trunk/libfakefs-ruby/debian/changelog	2010-08-13 22:18:02 UTC (rev 5767)
+++ trunk/libfakefs-ruby/debian/changelog	2010-08-15 20:36:05 UTC (rev 5768)
@@ -1,8 +1,11 @@
-libfakefs-ruby (0.2.1-2) UNRELEASED; urgency=low
+libfakefs-ruby (0.2.1-2) unstable; urgency=low
 
   * Switched to new gemwatch location
+  * Load tests with absolute path - Ruby 1.9.2 doesn't include '.' in it's
+    load path anymore
+  * Standards-Version: 3.9.1
 
- -- Tobias Grimm <etobi at debian.org>  Tue, 18 May 2010 09:54:51 +0200
+ -- Tobias Grimm <etobi at debian.org>  Sun, 15 Aug 2010 22:35:33 +0200
 
 libfakefs-ruby (0.2.1-1) unstable; urgency=low
 

Modified: trunk/libfakefs-ruby/debian/control
===================================================================
--- trunk/libfakefs-ruby/debian/control	2010-08-13 22:18:02 UTC (rev 5767)
+++ trunk/libfakefs-ruby/debian/control	2010-08-15 20:36:05 UTC (rev 5768)
@@ -5,7 +5,7 @@
 Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
 Build-Depends: debhelper (>= 7), cdbs, ruby-pkg-tools
 Build-Depends-Indep: ruby1.8, ruby1.9.1
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Homepage: http://github.com/defunkt/fakefs
 #Vcs-Git: git://git.debian.org/collab-maint/libfakefs-ruby.git
 #Vcs-Browser: http://git.debian.org/?p=collab-maint/libfakefs-ruby.git;a=summary

Modified: trunk/libfakefs-ruby/debian/rules
===================================================================
--- trunk/libfakefs-ruby/debian/rules	2010-08-13 22:18:02 UTC (rev 5767)
+++ trunk/libfakefs-ruby/debian/rules	2010-08-15 20:36:05 UTC (rev 5768)
@@ -3,7 +3,7 @@
 include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk
 
 binary-post-install/libfakefs-ruby1.8::
-	ruby1.8 -e "Dir['test/**/*_test.rb'].each { |file| require file }"
+	ruby1.8 -e "Dir['test/**/*_test.rb'].each { |file| require File.expand_path(file) }"
 
 binary-post-install/libfakefs-ruby1.9.1::
-	ruby1.9.1 -e "Dir['test/**/*_test.rb'].each { |file| require file }"
+	ruby1.9.1 -e "Dir['test/**/*_test.rb'].each { |file| require File.expand_path(file) }"




More information about the Pkg-ruby-extras-commits mailing list