Changeset 35236

Show
Ignore:
Timestamp:
09/08/09 16:20:38 (4 years ago)
Author:
trashsuite
Message:

* URI が 'http://www.trashsuite.org' で切れている場合,uri.path に '/' を入れるようにした
* version++

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/enokidu_antenna/enokidu.rb

    r25270 r35236  
    1717  class UserAgent 
    1818    NAME    = 'Enokidu::Antenna' 
    19     VERSION = '0.1.7' 
     19    VERSION = '0.1.8' 
    2020  end 
    2121 
     
    207207    private 
    208208    def mkpath(uri) 
     209      uri.path = '/' if uri.path.empty? 
    209210      uri.query ? [uri.path, uri.query].join('?') : uri.path 
    210211    end