¥È¥Ã¥× «Á°¤ÎÆüµ­(2007-02-22) ºÇ¿· ¼¡¤ÎÆüµ­(2007-02-24)» ÊÔ½¸

3 ÆüË·¼çÆüµ­


2007-02-23 [ĹǯÆüµ­]

_ rails for ruby-1.9

¸½¾õ¡§

 # test/core_ext/enumerable_test.rb:
 def _test_index_by #:skip:
 # ruby 1.9.0 (2007-02-21 patchlevel 0) [i386-mingw32]
 # activesupport
 527 tests, 1817 assertions, 13 failures, 13 errors
 # ruby 1.9.0 (2007-02-21 patchlevel 0) [i686-linux]
 # activesupport
 527 tests, 1826 assertions, 10 failures, 11 errors

_ [Ruby] [BUG] cfp consistency error - call0

actionpack ¤Ë¿¯¹¶¡£

class Proxy
  def initialize(i, m)
    @i = i
    @m = m
  end

  def inspect
    @i.__send__(@m)#.inspect
  end

  #def method_missing(called, *args, &block)
  #  p "here"
  #end
end

class C
  def foo
    instance_variable_set :@x, Proxy.new(self, :x)
    self.__send__(:x)
    #@x.inspect
  end
end

c = C.new
c.foo
[BUG] cfp consistency error - call0
ruby 1.9.0 (2007-02-21) [i686-linux]

¤µ¤µ¤À¤µ¤ó¤è¤í¤·¤¯¤¥

deprecation warning ¤Î»Å³Ý¤±¤Ç¤³¤±¤¿¡£

_ [Ruby] 1.9 cgi.rb

CGI::QueryExtension::MorphingBody ¤Ã¤Æ¤Ê¤ó¤ä¤í¤¦¡£

_ [Ruby] 1.9

FileTest.exists? -> FileTest.exist?

[]