Sha256: a8c65d711cd88eaa65c72aa6f6355667a8268a220e4e67a5a1086736c83bd58e

Contents?: true

Size: 305 Bytes

Versions: 4

Compression:

Stored size: 305 Bytes

Contents

module Caboodle
  
  class Identity
  
  end

  class IdentityApp < Caboodle::Kit
    
    set :views, File.join(File.dirname(__FILE__), "views")
    
    get "/me" do
      @title = "About me"
      haml :me, :locals=>{:identity=>Identity.new()}, :layout=>true
    end
    
    menu "Me", "/me"
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
caboodle-0.1.3 lib/caboodle/kits/identity/identity.rb
caboodle-0.1.2 lib/caboodle/kits/identity/identity.rb
caboodle-0.1.1 lib/caboodle/kits/identity/identity.rb
caboodle-0.1.0 lib/caboodle/kits/identity/identity.rb