From mboxrd@z Thu Jan 1 00:00:00 1970 From: ingmar.stdin@gmail.com (Ingmar Vanhassel) Date: Thu, 10 Jan 2008 18:23:35 +0100 Subject: [sup-talk] backspace and delete keys In-Reply-To: <1199982010-sup-5502@south> References: <1199746454-sup-5936@clarabella.clarabella> <1199750582-sup-5731@south> <1199751709-sup-9184@clarabella.clarabella> <1199762547-sup-3379@clarabella.clarabella> <1199774271-sup-9832@south> <1199791609-sup-7134@clarabella.clarabella> <1199806348-sup-6626@south> <1199809040-sup-2026@clarabella.clarabella> <1199810397-sup-8123@south> <1199812350-sup-1695@south> <1199813518-sup-5839@clarabella.clarabella> <1199905135-sup-2008@south> <1199948145-sup-5723@indigo> <1199982010-sup-5502@south> Message-ID: <1199985758-sup-6668@indigo> Excerpts from William Morgan's message of Thu Jan 10 17:22:03 +0100 2008: > Excerpts from Ingmar Vanhassel's message of Wed Jan 09 23:05:40 -0800 2008: > > ingmar at indigo /var/temp/portage/net-mail/sup-9999/work $ rake gem > > (in /home/temp/portage/net-mail/sup-9999/work) > > [Thu Jan 10 07:48:47 +0100 2008] using character set encoding "UTF-8" > > rake aborted! > > can't convert Fixnum into String > > /home/temp/portage/net-mail/sup-9999/work/Rakefile:15:in `new' > > Well Rake helpfully omits the backtrace, and I can think of a very easy > way to convert a fixnum into a string, but I'm guessing this is a > problem with an earlier version of RubyGems than I have. I have rubygems-0.9.4-r2. > Does this patch help? It does, thanks! > diff --git a/Rakefile b/Rakefile > index 33e9883..69f0b68 100644 > --- a/Rakefile > +++ b/Rakefile > @@ -10,7 +10,7 @@ end # thanks to "Mike H" > ## allow people who use development versions by running "rake gem" > ## and installing the resulting gem it to be able to do this. (gem > ## versions must be in dotted-digit notation only). > -version = Redwood::VERSION == "git" ? 999 : Redwood::VERSION > +version = Redwood::VERSION == "git" ? "999" : Redwood::VERSION > > Hoe.new('sup', version) do |p| > p.rubyforge_name = 'sup' >