资 源 简 介
Proof of concept project to build a simple questionnaire for users.
Major issue is handling the UI for different types of questions:
True/False, Text, Select, etc.
Next major step is to develop a Rails plugin.
文 件 列 表
QuestionLabs\app\controllers\application.rb
QuestionLabs\app\controllers\main_controller.rb
QuestionLabs\app\controllers\questionaires_controller.rb
QuestionLabs\app\controllers\questions_controller.rb
QuestionLabs\app\controllers\sessions_controller.rb
QuestionLabs\app\controllers\users_controller.rb
QuestionLabs\app\helpers\application_helper.rb
QuestionLabs\app\helpers\main_helper.rb
QuestionLabs\app\helpers\navigation_helper.rb
QuestionLabs\app\helpers\questionaires_helper.rb
QuestionLabs\app\helpers\questions_helper.rb
QuestionLabs\app\helpers\sessions_helper.rb
QuestionLabs\app\helpers\users_helper.rb
QuestionLabs\app\models\answer.rb
QuestionLabs\app\models\months_question.rb
QuestionLabs\app\models\question.rb
QuestionLabs\app\models\select_multiple_question.rb
QuestionLabs\app\models\select_question.rb
QuestionLabs\app\models\string_question.rb
QuestionLabs\app\models\true_false_question.rb
QuestionLabs\app\models\user.rb
QuestionLabs\app\views\layouts\application.html.erb
QuestionLabs\app\views\layouts\main.html.erb
QuestionLabs\app\views\main\abstract.html.erb
QuestionLabs\app\views\main\codetest.html.erb
QuestionLabs\app\views\main\index.html.erb
QuestionLabs\app\views\questionaires\create.html.erb
QuestionLabs\app\views\questionaires\edit.html.erb
QuestionLabs\app\views\questionaires\new.html.erb
QuestionLabs\app\views\questionaires\show.html.erb
QuestionLabs\app\views\questionaires\update.html.erb
QuestionLabs\app\views\questionaires\_months_question.html.erb
QuestionLabs\app\views\questionaires\_question.html.erb
QuestionLabs\app\views\questionaires\_select_multiple_question.html.erb
QuestionLabs\app\views\questionaires\_select_question.html.erb
QuestionLabs\app\views\questionaires\_show_question.html.erb
QuestionLabs\app\views\questionaires\_string_question.html.erb
QuestionLabs\app\views\questionaires\_true_false_question.html.erb
QuestionLabs\app\views\questions\index.html.erb
QuestionLabs\app\views\questions\_question.html.erb
QuestionLabs\app\views\sessions\new.html.erb
QuestionLabs\app\views\shared\_navigation.html.erb
QuestionLabs\app\views\shared\_nav_link.html.erb
QuestionLabs\app\views\users\index.html.erb
QuestionLabs\app\views\users\new.html.erb
QuestionLabs\app\views\users\show.html.erb
QuestionLabs\app\views\users\_user.html.erb
QuestionLabs\config\boot.rb
QuestionLabs\config\database.yml
QuestionLabs\config\environment.rb
QuestionLabs\config\environments\development.rb
QuestionLabs\config\environments\production.rb
QuestionLabs\config\environments\test.rb
QuestionLabs\config\initializers\inflections.rb
QuestionLabs\config\initializers\mime_types.rb
QuestionLabs\config\routes.rb
QuestionLabs\db\backup\answers.yml
QuestionLabs\db\backup\questions.yml
QuestionLabs\db\backup\users.yml
QuestionLabs\db\development_structure.sql
QuestionLabs\db\migrate\001_create_users.rb
QuestionLabs\db\migrate\002_create_questions.rb
QuestionLabs\db\migrate\003_create_answers.rb
QuestionLabs\db\migrate\004_add_name_to_users.rb
QuestionLabs\db\schema.rb
QuestionLabs\doc\README_FOR_APP
QuestionLabs\lib\authenticated_system.rb
QuestionLabs\lib\authenticated_test_helper.rb
QuestionLabs\lib\tasks\backup.rake
QuestionLabs\lib\tasks\utils.rake
QuestionLabs\lib\tasks\validate_models.rake
QuestionLabs\log\development.log
QuestionLabs\log\production.log
QuestionLabs\log\server.log
QuestionLabs\log\test.log
QuestionLabs\nbproject\private\config.properties
QuestionLabs\nbproject\private\private.properties
QuestionLabs\nbproject\private\private.xml
QuestionLabs\nbproject\private\rake-d.txt
QuestionLabs\nbproject\private\rake-t.txt
QuestionLabs\nbproject\project.properties
QuestionLabs\nbproject\project.xml
QuestionLabs\public\404.html
QuestionLabs\public\422.html
QuestionLabs\public\500.html
QuestionLabs\public\dispatch.cgi
QuestionLabs\public\dispatch.fcgi
QuestionLabs\public\dispatch.rb
QuestionLabs\public\favicon.ico
QuestionLabs\public\images\icons\bullet_go.png
QuestionLabs\public\images\icons\cross.png
QuestionLabs\public\images\icons\key.png
QuestionLabs\public\images\icons\page_find.png
QuestionLabs\public\images\icons\tick.png
QuestionLabs\public\images\rails.png
QuestionLabs\public\javascripts\application.js
QuestionLabs\public\javascripts\controls.js
QuestionLabs\public\javascripts\dragdrop.js
QuestionLabs\public\javascripts\effects.js
QuestionLabs\public\javascripts\lowpro.js
QuestionLabs\public\javascripts\nil_value.js
QuestionLabs\public\javascripts\prototype.js
QuestionLabs\public\questions\questions.yml
QuestionLabs\public\questions\questions_1.yml
QuestionLabs\public\questions\xxx.yml
QuestionLabs\public\robots.txt
QuestionLabs\public\stylesheets\blueprint\ie.css
QuestionLabs\public\stylesheets\blueprint\plugins\buttons\buttons.css
QuestionLabs\public\stylesheets\blueprint\plugins\buttons\icons\cross.png
QuestionLabs\public\stylesheets\blueprint\plugins\buttons\icons\key.png
QuestionLabs\public\stylesheets\blueprint\plugins\buttons\icons\tick.png
QuestionLabs\public\stylesheets\blueprint\plugins\buttons\Readme
QuestionLabs\public\stylesheets\blueprint\plugins\fancy-type\readme.txt
QuestionLabs\public\stylesheets\blueprint\plugins\fancy-type\screen.css
QuestionLabs\public\stylesheets\blueprint\print.css
QuestionLabs\public\stylesheets\blueprint\screen.css
QuestionLabs\public\stylesheets\blueprint\src\forms.css
QuestionLabs\public\stylesheets\blueprint\src\grid.css
QuestionLabs\public\stylesheets\blueprint\src\grid.png
QuestionLabs\public\stylesheets\blueprint\src\ie.css
QuestionLabs\public\stylesheets\blueprint\src\liquid.css
QuestionLabs\public\stylesheets\blueprint\src\print.css
QuestionLabs\public\stylesheets\blueprint\src\reset.css
QuestionLabs\public\stylesheets\blueprint\src\typography.css
QuestionLabs\public\stylesheets\myform.css
QuestionLabs\public\stylesheets\myprint.css
QuestionLabs\public\stylesheets\myscreen.css
QuestionLabs\Rakefile
QuestionLabs\README
QuestionLabs\README_CODE_REVIEW
QuestionLabs\README_CODE_REVIEW.html
QuestionLabs\README_FILE_FORMAT_RULES
QuestionLabs\script\about
QuestionLabs\script\console
QuestionLabs\script\destroy
QuestionLabs\script\generate
QuestionLabs\script\performance\benchmarker
QuestionLabs\script\performance\profiler
QuestionLabs\script\performance\request
QuestionLabs\script\plugin
QuestionLabs\script\process\inspector
QuestionLabs\script\process\reaper
QuestionLabs\script\process\spawner
QuestionLabs\script\runner
QuestionLabs\script\server
QuestionLabs\test\fixtures\users.yml
QuestionLabs\test\functional\main_controller_test.rb
QuestionLabs\test\functional\questionaire_controller_test.rb
QuestionLabs\test\functional\questions_controller_test.rb
QuestionLabs\test\functional\sessions_controller_test.rb
QuestionLabs\test\functional\users_controller_test.rb
QuestionLabs
test
mocks
tmp
test
integration
QuestionLabs\test\test_helper.rb
QuestionLabs\test\unit\answer_test.rb
QuestionLabs\test\unit\question_test.rb
QuestionLabs\test\unit\user_test.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\authenticated_generator.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\activation.html.erb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\authenticated_system.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\authenticated_test_helper.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\controller.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\fixtures.yml
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\functional_spec.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\functional_test.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\helper.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\login.html.erb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\mailer.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\mailer_test.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\migration.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\model.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\model_controller.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\model_functional_spec.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\model_functional_test.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\model_helper.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\observer.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\signup.html.erb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\signup_notification.html.erb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\unit_spec.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\templates\unit_test.rb
QuestionLabs\vendor\plugins\restful_authentication\generators\authenticated\USAGE
QuestionLabs\vendor\plugins\restful_authentication\install.rb
QuestionLabs\vendor\plugins\restful_authentication\lib\restful_authentication\rails_commands.rb
QuestionLabs\vendor\plugins\restful_authentication\Rakefile
QuestionLabs\vendor\plugins\restful_authentication\README