Skip to content

Instantly share code, notes, and snippets.

@Aupajo
Created February 18, 2009 01:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aupajo/66126 to your computer and use it in GitHub Desktop.
Save Aupajo/66126 to your computer and use it in GitHub Desktop.
require 'sinatra'
require 'dm-core'
class Post do
include 'DataMapper'
property :title, String, :length => 255
property :content, Text
end
get '/' do
@posts = Post.all
erb :posts
end
get '/:post' do
@post = Post.all
erb :post
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment