Sha256: 91fff21e602dbcc9e61425a4e0982649a734c9b634e23afe4100442b2f820113
Contents?: true
Size: 1.06 KB
Versions: 4
Compression:
Stored size: 1.06 KB
Contents
page "/fake.html", :proxy => "/real.html", :layout => false page "fake2.html", :proxy => "/real.html", :layout => false page "fake3.html", :proxy => "real.html", :layout => false page "/fake4.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 ignore "should_be_ignored4.html" page "should_be_ignored5.html", :ignore => true page "target_ignore2.html", :proxy => "/should_be_ignored6.html", :ignore => true page "target_ignore3.html", :proxy => "should_be_ignored7.html", :ignore => true page "/target_ignore4.html", :proxy => "should_be_ignored8.html", :ignore => true %w(one two).each do |num| page "/fake/#{num}.html", :proxy => "/real/index.html" do @num = num end page "fake2/#{num}.html", :proxy => "/real/index.html" do @num = num end page "fake3/#{num}.html", :proxy => "real/index.html" do @num = num end page "/fake4/#{num}.html", :proxy => "real/index.html" do @num = num end end
Version data entries
4 entries across 4 versions & 1 rubygems