Sha256: 10b97a97c0de3b49c2dc71de6352edc921fa12b76ef95fdb405647a7327342d4
Contents?: true
Size: 859 Bytes
Versions: 31
Compression:
Stored size: 859 Bytes
Contents
class Application < Rhosync::Base class << self def authenticate(username,password,session) true # do some interesting authentication here... end # Add hooks for application startup here # Don't forget to call super at the end! def initializer(path) super end # Calling super here returns rack tempfile path: # i.e. /var/folders/J4/J4wGJ-r6H7S313GEZ-Xx5E+++TI # Note: This tempfile is removed when server stops or crashes... # See http://rack.rubyforge.org/doc/Multipart.html for more info # # Override this by creating a copy of the file somewhere # and returning the path to that file (then don't call super!): # i.e. /mnt/myimages/soccer.png def store_blob(obj,field_name,blob) super #=> returns blob[:tempfile] end end end Application.initializer(ROOT_PATH)
Version data entries
31 entries across 24 versions & 1 rubygems