Skip to content

Instantly share code, notes, and snippets.

@jchris
Forked from mattetti/gist:14278
Created October 2, 2008 05:01
Show Gist options
  • Save jchris/14280 to your computer and use it in GitHub Desktop.
Save jchris/14280 to your computer and use it in GitHub Desktop.
class Question
include CouchRest::Model
key_accessors :type, :position, :text, :required_answers_count, :possible_answers, :hint
def initialize (node = {})
@doc = node
end
def to_json
@doc.to_json
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment