1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: The .rspec file is missing from the released gem
The github repository for this library contains a .rspec file that makes it
possible to run tests on the source code. However, it is currently not
released within the gem file published on rubygems.org. This makes it
impossible for the debian package build process to run tests without failing.
.
The file content is what can currently be found in the git repository for tag
0.5.1.
.
ruby-necromancer (0.5.1-1) UNRELEASED; urgency=medium
.
* Initial release (Closes: #939307)
Author: Gabriel Filion <gabriel@koumbit.org>
Bug-Debian: https://bugs.debian.org/939307
--- /dev/null
+++ ruby-necromancer-0.5.1/.rspec
@@ -0,0 +1,3 @@
+--color
+--require spec_helper
+--warnings
|