Home - HeHStudy/surveyor GitHub Wiki
The Surveyor Guide
- Introduction
 - Parsing and Data Model
 - The JSON API and Exports
 - Special topics
 
Support
Start by reviewing the README.
For general discussion (e.g., "how do I do this?"), please send a message to the surveyor-dev group. This group is moderated to keep out spam; don't be surprised if your message isn't posted immediately.
For reproducible bugs, please file an issue on the GitHub issue tracker. Please include a minimal test case (a detailed description of how to trigger the bug in a clean rails application). If you aren't sure how to isolate the bug, send a message to surveyor-dev with what you know and we'll try to help.
For build status see our continuous integration page.
Take a look at our screencast (a bit dated now).
Workflow
- Design the survey
 - Parse survey 
bundle exec rake surveyor FILE=surveys/[your_survey_file.rb] - Users respond (usually via 
http://[your.server]/surveys) - Export the results
 
Some other helpful rake tasks:
bundle exec rake surveyor:removeremoves surveys that haven't been responded to.bundle exec rake surveyor:unparseexports a survey into a surveyor DSL file.
Question types
[http://github.com/NUBIC/surveyor/raw/master/doc/question types.png](http://github.com/NUBIC/surveyor/raw/master/doc/question types.png)
NEXT: Parsing and Data Model