public
Rubygem
Description: Johnson wraps JavaScript in a loving Ruby embrace.
Homepage: http://github.com/jbarnette/johnson/wikis
Clone URL: git://github.com/jbarnette/johnson.git
Search Repo:
Env fix
wycats (author)
Thu Apr 24 13:03:59 -0700 2008
commit  2a2fdf2942181b48852e1a0cd421cdc68a5add02
tree    e6740c2dca2f56c3d660cbaa370d08b470172353
parent  c8e3eac7c26f9952aeb8e41b2f24964c23d0a398
...
588
589
590
591
 
592
593
 
 
594
595
596
...
588
589
590
 
591
592
 
593
594
595
596
597
0
@@ -588,9 +588,10 @@ Ruby.require("uri");
0
         var url = curLocation.merge(self.url);
0
         var connection;
0
         
0
- if ( url.scheme() == "file" ) {
0
+ if ( url.scheme == "file" ) {
0
           if ( self.method == "PUT" ) {
0
- var out = new Ruby.File(url.path()), text = data || "";
0
+ var out = new Ruby.File(url.path);
0
+ var text = data || "";
0
             
0
             out.puts( text );
0
             out.flush();
...
1
 
...
 
1
0
@@ -1 +1 @@
0
-Subproject commit 6104d658319268c4622c4e5f9b36aba8c1108571
0
+Subproject commit 8a0fc4bc33da5f3b08b40257c7daaf41e52fc9f7

Comments

    No one has commented yet.