GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Rubygem
Description: Resource-oriented open source Ruby framework for Web apps.
Homepage: http://rubywaves.com/
Clone URL: git://github.com/dyoder/waves.git
more rdoc tweaks
automatthew (author)
Fri Jul 11 14:51:54 -0700 2008
commit  2f309641638de8cbeda33be0ecb15846c36f7109
tree    7071dfa7d03374ac5c27b5c66a332d38ef1f513c
parent  ff4cd1db15973b196dc0dad14304449045b857b2
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@
0
 
0
 # = Generate or update a Waves application
0
 #
0
-# The +waves+ script generates a new Waves application or updates an existing one. The script uses RakeGen for file copies and template processing, and the current version of RakeGen requires you to affirm that you want to clobber each and every file when doing an update.
0
+# The +waves+ script generates a new Waves application or updates an existing app. The script uses {RakeGen}[http://github.com/automatthew/rakegen] for file copies and template processing, and the current version of RakeGen requires you to affirm that you want to clobber each and every file when doing an update.
0
 #
0
 # == Usage
0
 #
...
 
 
 
 
 
1
 
2
3
4
...
1
2
3
4
5
6
7
8
9
10
0
@@ -1,3 +1,9 @@
0
+# Patch Ruby's Tempfile class to work around a problem uploading files with Rack.
0
+#
0
+# The fix came from here: http://sinatra.lighthouseapp.com/projects/9779/tickets/1
0
+#
0
+# This is fixed in Rack already, but it hasn't made it into a gem.
0
 class Tempfile
0
+ # Make == act like eql?
0
   def ==(other) ; eql?(other) || super ; end
0
 end
0
\ No newline at end of file

Comments

    No one has commented yet.