Skip to content

Instantly share code, notes, and snippets.

@sprite2005
Created June 4, 2009 22:52
Show Gist options
  • Save sprite2005/123916 to your computer and use it in GitHub Desktop.
Save sprite2005/123916 to your computer and use it in GitHub Desktop.
class ChatController < ApplicationController
def authorize
generated_xml = String.new
xml = Builder::XmlMarkup.new(:target => generated_xml, :indent => 2)
xml.instruct!
xml.auth do
xml.userName
xml.gender
xml.level
xml.photo
xml.photoModeImage
end
render :text => generated_xml
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment