From: Tilman Sauerbeck Date: Fri, 23 Mar 2007 00:25:21 +0000 (+0100) Subject: Removed RCS-style IDs. X-Git-Tag: ruby-eet-0.1.4~9 X-Git-Url: http://git.code-monkey.de/?p=ruby-eet.git;a=commitdiff_plain;h=55a30d72d58511425905f5c25c9153a850710a6c Removed RCS-style IDs. --- diff --git a/AUTHORS b/AUTHORS index 4f7f7d1..5864b3d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,5 +1 @@ --- -$Id: AUTHORS 1 2005-03-26 01:45:38Z tilman $ -++ - Tilman Sauerbeck (tilman at code-monkey de) diff --git a/COPYING b/COPYING index e800483..be5c420 100644 --- a/COPYING +++ b/COPYING @@ -1,7 +1,3 @@ --- -$Id: COPYING 1 2005-03-26 01:45:38Z tilman $ -++ - Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de) Permission is hereby granted, free of charge, to any person obtaining diff --git a/ChangeLog b/ChangeLog index 1cc3e18..be21abb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,3 @@ --- -$Id: ChangeLog 76 2006-05-14 13:51:45Z tilman $ -++ - 2006-05-14 Tilman Sauerbeck (tilman at code-monkey de) * ext/ext.c: Fixed some warnings diff --git a/NEWS b/NEWS index ecbc591..bb01273 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,3 @@ --- -$Id: NEWS 56 2005-06-02 20:17:55Z tilman $ -++ - == 0.1.3 * Rewrote most of the Object serializing code in C, for better diff --git a/README b/README index a0eb57a..b9dcf66 100644 --- a/README +++ b/README @@ -1,7 +1,3 @@ --- -$Id: README 75 2006-05-13 11:54:53Z tilman $ -++ - = Ruby-EET -- Ruby bindings for EET Ruby-EET allows you to read and write EET[http://enlightenment.org] files diff --git a/Rakefile b/Rakefile index 70a6f7f..3945e00 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,3 @@ -# $Id: Rakefile 75 2006-05-13 11:54:53Z tilman $ - require "rbconfig" require "rake/clean" require "rake/testtask" diff --git a/ext/ext.c b/ext/ext.c index 79ba28d..2fa47a9 100644 --- a/ext/ext.c +++ b/ext/ext.c @@ -1,6 +1,4 @@ /* - * $Id: ext.c 76 2006-05-14 13:51:45Z tilman $ - * * Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de) * * Permission is hereby granted, free of charge, to any person obtaining diff --git a/lib/eet.rb b/lib/eet.rb index f692129..539dc36 100644 --- a/lib/eet.rb +++ b/lib/eet.rb @@ -1,6 +1,4 @@ #-- -# $Id: eet.rb 74 2006-05-13 10:34:36Z tilman $ -# # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de) # # Permission is hereby granted, free of charge, to any person obtaining diff --git a/test/common.rb b/test/common.rb index b1cac31..b4e3430 100644 --- a/test/common.rb +++ b/test/common.rb @@ -1,5 +1,3 @@ -# $Id: common.rb 2 2005-03-26 13:39:17Z tilman $ - class WrappedString def initialize(blah) @blah = blah diff --git a/test/test_array_sub.rb b/test/test_array_sub.rb index 90c8f1e..669609d 100644 --- a/test/test_array_sub.rb +++ b/test/test_array_sub.rb @@ -1,5 +1,3 @@ -# $Id: test_array_sub.rb 43 2005-05-25 19:44:06Z tilman $ - require "eet" require "test/unit" require "common" diff --git a/test/test_basic.rb b/test/test_basic.rb index 017cdf6..9c702c6 100644 --- a/test/test_basic.rb +++ b/test/test_basic.rb @@ -1,5 +1,3 @@ -# $Id: test_basic.rb 59 2005-06-08 16:13:15Z tilman $ - require "eet" require "test/unit" require "common" diff --git a/test/test_broken_classes.rb b/test/test_broken_classes.rb index 63c7fa8..cbd6ea1 100644 --- a/test/test_broken_classes.rb +++ b/test/test_broken_classes.rb @@ -1,5 +1,3 @@ -# $Id: test_broken_classes.rb 49 2005-05-30 19:52:36Z tilman $ - class BrokenTestData1 end diff --git a/test/test_chunk.rb b/test/test_chunk.rb index 881cbca..8d0f405 100644 --- a/test/test_chunk.rb +++ b/test/test_chunk.rb @@ -1,5 +1,3 @@ -# $Id: test_chunk.rb 72 2005-07-16 13:15:42Z tilman $ - require "eet" require "test/unit" diff --git a/test/test_hash.rb b/test/test_hash.rb index b77dac3..273548f 100644 --- a/test/test_hash.rb +++ b/test/test_hash.rb @@ -1,5 +1,3 @@ -# $Id: test_hash.rb 1 2005-03-26 01:45:38Z tilman $ - require "eet" require "test/unit" require "common" diff --git a/test/test_list.rb b/test/test_list.rb index 782ba97..d8f36bc 100644 --- a/test/test_list.rb +++ b/test/test_list.rb @@ -1,5 +1,3 @@ -# $Id: test_list.rb 1 2005-03-26 01:45:38Z tilman $ - require "eet" require "test/unit" require "common" diff --git a/test/test_misc.rb b/test/test_misc.rb index 80660b5..9272d94 100644 --- a/test/test_misc.rb +++ b/test/test_misc.rb @@ -1,5 +1,3 @@ -# $Id: test_misc.rb 74 2006-05-13 10:34:36Z tilman $ - require "eet" require "test/unit" require "ftools" diff --git a/test/test_stream.rb b/test/test_stream.rb index f2d52ee..f054ba4 100644 --- a/test/test_stream.rb +++ b/test/test_stream.rb @@ -1,5 +1,3 @@ -# $Id: test_stream.rb 72 2005-07-16 13:15:42Z tilman $ - require "eet" require "test/unit" diff --git a/test/test_sub.rb b/test/test_sub.rb index a92e5b4..7194076 100644 --- a/test/test_sub.rb +++ b/test/test_sub.rb @@ -1,5 +1,3 @@ -# $Id: test_sub.rb 1 2005-03-26 01:45:38Z tilman $ - require "eet" require "test/unit" require "common"