Created
August 17, 2010 19:18
-
-
Save onsails/531554 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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