Skip to content

Instantly share code, notes, and snippets.

@onsails
Created August 17, 2010 19:18
Show Gist options
  • Save onsails/531554 to your computer and use it in GitHub Desktop.
Save onsails/531554 to your computer and use it in GitHub Desktop.
require 'couchrest_extended_document'
require 'couchsphinx'
require 'lib/sdb'
class Content < CouchRest::ExtendedDocument
use_database SERVER.default_database
property :content
property :title
property :url
property :charset
property :content_type
fulltext_index :content
end
#!/usr/bin/env ruby
require 'rubygems'
require 'app/models/content' # Depends on location of model files
require 'lib/sdb'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment