mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
rsync flags don't warn; grammar on homepage
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@714 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
parent
be53e43407
commit
94c55aa016
5 changed files with 4 additions and 10 deletions
2
Rakefile
2
Rakefile
|
@ -188,7 +188,7 @@ task :gem_source => [:package_all] do
|
||||||
end
|
end
|
||||||
|
|
||||||
task :site_webgen do
|
task :site_webgen do
|
||||||
sh "pushd site; webgen; ruby atom.rb > output/feed.atom; rsync -azv output/* rubyforge.org:/var/www/gforge-projects/mongrel/; popd"
|
sh "pushd site; webgen; ruby atom.rb > output/feed.atom; rsync -azv --no-perms --no-times output/* rubyforge.org:/var/www/gforge-projects/mongrel/; popd"
|
||||||
end
|
end
|
||||||
|
|
||||||
task :site_rdoc => [:redoc] do
|
task :site_rdoc => [:redoc] do
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
webgen Website Template 'default'
|
|
||||||
|
|
||||||
This is the default website template. It only contains the basic files and is a good
|
|
||||||
starting place for any website.
|
|
||||||
|
|
||||||
This note can be deleted!
|
|
|
@ -70,7 +70,7 @@
|
||||||
|
|
||||||
<dt><a href="http://rubyforge.org/tracker/?atid=5145&group_id=1306&func=browse"><img src="{relocatable: images/side_p2.gif}" alt="Bugs" /><br /></a></dt>
|
<dt><a href="http://rubyforge.org/tracker/?atid=5145&group_id=1306&func=browse"><img src="{relocatable: images/side_p2.gif}" alt="Bugs" /><br /></a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p><b>Tracker:</b> Found a bug? Well then report it already?!</p>
|
<p><b>Tracker:</b> Found a bug? Well then report it already!</p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt><a href="http://rubyforge.org/mailman/listinfo/mongrel-users"><img src="{relocatable: images/side_p1.gif}" alt=
|
<dt><a href="http://rubyforge.org/mailman/listinfo/mongrel-users"><img src="{relocatable: images/side_p1.gif}" alt=
|
||||||
|
|
|
@ -8,7 +8,7 @@ require 'socket'
|
||||||
this_client = server_socket.accept
|
this_client = server_socket.accept
|
||||||
4.times do |n|
|
4.times do |n|
|
||||||
begin
|
begin
|
||||||
data = this_client.readpartial(4)
|
data = this_client.readpartial(2)
|
||||||
puts "Server got: #{data}"
|
puts "Server got: #{data}"
|
||||||
if n == 0
|
if n == 0
|
||||||
this_client.close
|
this_client.close
|
||||||
|
|
|
@ -178,7 +178,7 @@ class URIClassifierTest < Test::Unit::TestCase
|
||||||
|
|
||||||
tests.each do |uri|
|
tests.each do |uri|
|
||||||
script_name, path_info, handler = uri_classifier.resolve(uri)
|
script_name, path_info, handler = uri_classifier.resolve(uri)
|
||||||
assert_equal root, script_name
|
assert_equal root, script_name, "#{uri} did not resolve to #{root}"
|
||||||
assert_equal uri, path_info
|
assert_equal uri, path_info
|
||||||
assert_equal 2, handler
|
assert_equal 2, handler
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue