2011-10-15 11:21:56 -07:00
|
|
|
page "/fake.html", :proxy => "/real.html", :layout => false
|
|
|
|
|
|
|
|
ignore "/should_be_ignored.html"
|
|
|
|
page "/should_be_ignored2.html", :ignore => true
|
|
|
|
page "/target_ignore.html", :proxy => "/should_be_ignored3.html", :ignore => true
|
|
|
|
|
|
|
|
%w(one two).each do |num|
|
|
|
|
page "/fake/#{num}.html", :proxy => "/real/index.html" do
|
|
|
|
@num = num
|
|
|
|
end
|
2012-08-13 15:39:06 -07:00
|
|
|
end
|