Skip to content

Instantly share code, notes, and snippets.

@achiurizo
Created June 18, 2010 05:25
Show Gist options
  • Save achiurizo/443282 to your computer and use it in GitHub Desktop.
Save achiurizo/443282 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
require 'data_mapper'
require 'dm-sqlite-adapter'
DataMapper.setup(:default, "sqlite3://" + '/tmp/development.db')
class Post
include DataMapper::Resource
property :id, Serial
property :name, String
belongs_to :category
end
class Category
include DataMapper::Resource
property :id, Serial
property :name, String
has n, :posts
end
get "/" do
"Hello World"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment