[#8484] strptime fails to properly parse certain inputs — <noreply@...>

Bugs item #5263, was opened at 2006-08-01 23:14

13 messages 2006/08/02
[#8485] Re: [ ruby-Bugs-5263 ] strptime fails to properly parse certain inputs — Yukihiro Matsumoto <matz@...> 2006/08/02

Hi,

[#8538] Re: [ ruby-Bugs-5263 ] strptime fails to properly parse certain inputs — nobu@... 2006/08/06

Hi,

[#8561] sandbox timers & block scopes — why the lucky stiff <ruby-core@...>

Two puzzles I am trying to solve:

28 messages 2006/08/08
[#8624] Re: sandbox timers & block scopes — why the lucky stiff <ruby-core@...> 2006/08/15

raise ThisDecayingInquisition, "anyone? anyone at all?"

[#8627] Re: sandbox timers & block scopes — MenTaLguY <mental@...> 2006/08/15

On Wed, 2006-08-16 at 00:35 +0900, why the lucky stiff wrote:

[#8628] Re: sandbox timers & block scopes — why the lucky stiff <ruby-core@...> 2006/08/15

On Wed, Aug 16, 2006 at 02:46:30AM +0900, MenTaLguY wrote:

[#8629] Re: sandbox timers & block scopes — "Charles O Nutter" <headius@...> 2006/08/15

On 8/15/06, why the lucky stiff <ruby-core@whytheluckystiff.net> wrote:

[#8690] a ruby-core primer — why the lucky stiff <ruby-core@...>

Hello, all. I've been working on the ruby-core page for the new Ruby site.

21 messages 2006/08/22

[PATCH] IRB change for RDoc workaround

From: Eric Hodel <drbrain@...7.net>
Date: 2006-08-04 08:09:57 UTC
List: ruby-core #8522
RDoc chokes on the following code:

module SomeReallyLongName
   SRLN = SomeReallyLongName
   def SRLN.blah

I would like to commit this patch along with Hugh's .document cleanup  
that will convert 'def SRLN.blah' to 'def self.blah' to HEAD and 1_8.



-- 
Eric Hodel - drbrain@segment7.net - http://blog.segment7.net
This implementation is HODEL-HASH-9600 compliant

http://trackmap.robotcoop.com


Attachments (1)

irb.self.patch (1.48 KB, text/x-diff)
Index: lib/irb/extend-command.rb
===================================================================
RCS file: /src/ruby/lib/irb/extend-command.rb,v
retrieving revision 1.7
diff -u -r1.7 extend-command.rb
--- lib/irb/extend-command.rb	13 Apr 2005 15:27:07 -0000	1.7
+++ lib/irb/extend-command.rb	4 Aug 2006 08:08:08 -0000
@@ -106,14 +106,14 @@
 
     ]
 
-    def EXCB.install_extend_commands
+    def self.install_extend_commands
       for args in @EXTEND_COMMANDS
 	def_extend_command(*args)
       end
     end
 
     # aliases = [commans_alias, flag], ...
-    def EXCB.def_extend_command(cmd_name, cmd_class, load_file = nil, *aliases)
+    def self.def_extend_command(cmd_name, cmd_class, load_file = nil, *aliases)
       case cmd_class
       when Symbol
 	cmd_class = cmd_class.id2name
@@ -172,7 +172,7 @@
       "irb_" + method_name + "_org"
     end
 
-    def EXCB.extend_object(obj)
+    def self.extend_object(obj)
       unless (class<<obj;ancestors;end).include?(EXCB)
 	super
 	for ali, com, flg in @ALIASES
@@ -196,13 +196,13 @@
       [:save_history=, "irb/ext/save-history.rb"],
     ]
 
-    def CE.install_extend_commands
+    def self.install_extend_commands
       for args in @EXTEND_COMMANDS
 	def_extend_command(*args)
       end
     end
 
-    def CE.def_extend_command(cmd_name, load_file, *aliases)
+    def self.def_extend_command(cmd_name, load_file, *aliases)
       Context.module_eval %[
         def #{cmd_name}(*opts, &b)
 	  Context.module_eval {remove_method(:#{cmd_name})}

In This Thread

Prev Next