[DRE-commits] [ruby-multimap] 01/01: removed old patch, added Cedric to copyright

Jonas Genannt jonas at brachium-system.net
Fri Mar 7 23:45:22 UTC 2014


This is an automated email from the git hooks/post-receive script.

hggh-guest pushed a commit to branch master
in repository ruby-multimap.

commit 3dc2bcb7b7b9790edb0990309271f3e9731ecbdc
Author: Jonas Genannt <jonas at brachium-system.net>
Date:   Sat Mar 8 00:45:09 2014 +0100

    removed old patch, added Cedric to copyright
---
 debian/copyright                                  |  1 +
 debian/patches/remove_it_should_behave_like.patch | 79 -----------------------
 debian/patches/series                             |  1 -
 3 files changed, 1 insertion(+), 80 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 543eacf..03f643c 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,6 +8,7 @@ License: Expat
 
 Files: debian/*
 Copyright: 2014 Jonas Genannt <jonas.genannt at capi2name.de>
+           2014 Cédric Boutillier <boutil at debian.org>
 License: Expat
 
 License: Expat
diff --git a/debian/patches/remove_it_should_behave_like.patch b/debian/patches/remove_it_should_behave_like.patch
deleted file mode 100644
index 18744aa..0000000
--- a/debian/patches/remove_it_should_behave_like.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-Descrption: remove it_should_behave_like calls
- No public bug tracker exists, forwared by mail
-Author: Jonas Genannt <jonas.genannt at capi2name.de>
-Forwarded: yes
-
-diff --git a/spec/multimap_spec.rb b/spec/multimap_spec.rb
-index 027bcb0..28c004f 100644
---- a/spec/multimap_spec.rb
-+++ b/spec/multimap_spec.rb
-@@ -1,8 +1,8 @@
- require 'spec_helper'
- 
- describe Multimap, "with inital values {'a' => [100], 'b' => [200, 300]}" do
--  it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
--  it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
- 
-   before do
-     @map = Multimap["a" => 100, "b" => [200, 300]]
-@@ -10,8 +10,8 @@ describe Multimap, "with inital values {'a' => [100], 'b' => [200, 300]}" do
- end
- 
- describe Multimap, "with inital values {'a' => [100], 'b' => [200, 300]}" do
--  it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
--  it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
- 
-   before do
-     @map = Multimap["a", 100, "b", [200, 300]]
-@@ -19,8 +19,8 @@ describe Multimap, "with inital values {'a' => [100], 'b' => [200, 300]}" do
- end
- 
- describe Multimap, "with", Set do
--  it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
--  it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
- 
-   before do
-     @container = Set
-@@ -32,8 +32,8 @@ describe Multimap, "with", Set do
- end
- 
- describe Multimap, "with", MiniArray do
--  it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
--  it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
- 
-   before do
-     @container = MiniArray
-diff --git a/spec/nested_multimap_spec.rb b/spec/nested_multimap_spec.rb
-index 180a1c6..efe9342 100644
---- a/spec/nested_multimap_spec.rb
-+++ b/spec/nested_multimap_spec.rb
-@@ -1,8 +1,8 @@
- require 'spec_helper'
- 
- describe NestedMultimap, "with inital values" do
--  it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
--  it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
- 
-   before do
-     @map = NestedMultimap["a" => [100], "b" => [200, 300]]
-@@ -189,8 +189,8 @@ describe NestedMultimap, "with nested values" do
- end
- 
- describe NestedMultimap, "with", Set do
--  it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
--  it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Enumerable Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
-+  #it_should_behave_like "Hash Multimap with inital values {'a' => [100], 'b' => [200, 300]}"
- 
-   before do
-     @container = Set
diff --git a/debian/patches/series b/debian/patches/series
index 8b0069f..a4ce9e5 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
-#remove_it_should_behave_like.patch
 fix_syntax_for_shared_examples.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-multimap.git



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