git-svn-id: https://rubycas-server.googlecode.com/svn/trunk@2 fffcb96a-a727-0410-ad3e-7b35c796b8d7
This commit is contained in:
matt.zukowski 2007-01-22 21:14:35 +00:00
Родитель a107cf3f7f
Коммит 007fa753ad
2 изменённых файлов: 45 добавлений и 0 удалений

17
.project Normal file
Просмотреть файл

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>rubycas-server</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.rubypeople.rdt.core.rubybuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.rubypeople.rdt.core.rubynature</nature>
</natures>
</projectDescription>

28
casserver.rb Normal file
Просмотреть файл

@ -0,0 +1,28 @@
require 'camping'
Camping.goes :CasServer
module CasServer
end
module CasServer::Controllers
class Login < R '/'
def get
@server = "URBACON"
render :login
end
end
end
module CasServer::Views
def layout
html do
title { 'My HomePage' }
body { self << yield }
end
end
def login
h1 { "test" }
end
end