[DRE-commits] [SCM] ruby-dataobjects-sqlite3.git branch, master, updated. upstream/0.10.8-19-g2e63aae

Cédric Boutillier cedric.boutillier at gmail.com
Thu Apr 19 23:02:21 UTC 2012


The following commit has been merged in the master branch:
commit 2e63aae9a916bfa6ea74cfe6f69c246dad35b8ec
Author: Cédric Boutillier <cedric.boutillier at gmail.com>
Date:   Fri Apr 20 00:09:15 2012 +0200

    use rake to run the tests

diff --git a/debian/changelog b/debian/changelog
index 26cf016..c87470b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,8 +3,9 @@ ruby-dataobjects-sqlite3 (0.10.8-1) unstable; urgency=low
   * New upstream release
   * Bump Standards-Version to 3.9.3 (no changes needed)
   * Update Format URL in DEP5 debian/copyright file
+  * Use the rakefile method to run the RSpec tests
 
- -- Cédric Boutillier <cedric.boutillier at gmail.com>  Mon, 27 Feb 2012 13:19:58 +0100
+ -- Cédric Boutillier <cedric.boutillier at gmail.com>  Fri, 20 Apr 2012 00:07:14 +0200
 
 ruby-dataobjects-sqlite3 (0.10.7-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 3523032..85ec759 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
 Uploaders: Deepak Tripathi <deepak at debian.org>, Cédric Boutillier <cedric.boutillier at gmail.com>
 DM-Upload-Allowed: yes
-Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.10~), libsqlite3-dev, ruby-dataobjects (>= 0.10.8~), ruby-rspec (>= 2.5)
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.10~), libsqlite3-dev, ruby-dataobjects (>= 0.10.8~), ruby-rspec (>= 2.5), rake
 Standards-Version: 3.9.3
 Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-dataobjects-sqlite3.git
 Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-dataobjects-sqlite3.git;a=summary
diff --git a/debian/ruby-tests.rake b/debian/ruby-tests.rake
new file mode 100644
index 0000000..89a753d
--- /dev/null
+++ b/debian/ruby-tests.rake
@@ -0,0 +1,7 @@
+require 'rspec/core/rake_task'
+
+RSpec::Core::RakeTask.new(:spec) do |spec|
+  spec.pattern      = './spec/**/*_spec.rb'
+end
+
+task :default => :spec

-- 
ruby-dataobjects-sqlite3.git



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