Skip to content

Commit

Permalink
Merge pull request #27 from hcatlin/master
Browse files Browse the repository at this point in the history
Redirect to SassMeister.com. Fixes #25.
  • Loading branch information
₍˄ุ.͡˳̫.˄ุ₎ committed Oct 15, 2013
2 parents 7d877d3 + bd3f172 commit 48b894b
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions config.ru
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
require "rubygems"

require "rack/rewrite"

use Rack::Rewrite do
r301 %r{/docs/yardoc/(.*)}, '/documentation/$1'
r301 '/tutorial.html', '/guide'
r301 '/download.html', '/install'
r301 '/documentation', '/documentation/'
r301 '/documentation/_index.html', '/documentation/'

moved_permanently '/try.html', 'http://www.sassmeister.com'

rewrite(%r{^(.*)/([^/.]+)$}, lambda do |match, rack_env|
path = "#{File.dirname(__FILE__)}/build#{match[0]}"
next "#{match[1]}/#{match[2]}/index.html" if Dir.exists?(path)
next match[0] if File.exists?(path)
"#{match[0]}.html"
end)
end

if ENV["HEROKU"].nil? || ENV["HEROKU"] == 'false'
require "middleman"
run Middleman.server
else
require "rack/rewrite"

use Rack::Rewrite do
r301 %r{/docs/yardoc/(.*)}, '/documentation/$1'
r301 '/tutorial.html', '/guide'
r301 '/download.html', '/install'
r301 '/documentation', '/documentation/'
r301 '/documentation/_index.html', '/documentation/'

rewrite(%r{^(.*)/([^/.]+)$}, lambda do |match, rack_env|
path = "#{File.dirname(__FILE__)}/build#{match[0]}"
next "#{match[1]}/#{match[2]}/index.html" if Dir.exists?(path)
next match[0] if File.exists?(path)
"#{match[0]}.html"
end)
end

use Rack::Static, :urls => [""], :root => 'build', :index => 'index.html'

run lambda {}
Expand Down

0 comments on commit 48b894b

Please sign in to comment.