Class: Syncmind::PersonalityQuiz
- Inherits:
-
Object
- Object
- Syncmind::PersonalityQuiz
- Defined in:
- lib/syncmind.rb
Class Method Summary collapse
-
.accepts_things ⇒ Object
Do you accept things the way they are?.
-
.alone_time ⇒ Object
Do you prefer to be alone or with others?.
-
.automatic_decisions ⇒ Object
Do you make decisions first or think through them?.
-
.big_picture ⇒ Object
Do you prefer the big picture or the forest?.
-
.cleanliness ⇒ Object
Do you keep a clean room or not?.
-
.comfort_of_emotions ⇒ Object
Do you feel comfortable with your emotions?.
-
.commitment ⇒ Object
Do you keep your options open, or commit to a task?.
-
.conversational ⇒ Object
Do you prefer to talk, or be talked to?.
-
.create_data_folder ⇒ Object
Creates a data folder on your computer with placeholder script if it doesn’t exist.
-
.critical_thinking ⇒ Object
Do you tend to rely on faith or evidence?.
-
.easy_answers ⇒ Object
Do you prefer yes or no answers, or multiple choice?.
-
.event_recall ⇒ Object
Do you prefer to tell the exact event, or the meaning behind it.
-
.fixing_others ⇒ Object
Do you want to fix other people, or do like being fixed?.
-
.group_focus ⇒ Object
Do you work best in groups, or work best alone?.
-
.home_alone ⇒ Object
Do you prefer to stay at home or go out?.
-
.hurt_feelings ⇒ Object
Do you easily get your feelings hurt?.
-
.introversion ⇒ Object
Do you get warn out at parties or fired up?.
-
.issues_of_respect ⇒ Object
Do you prefer respect or love.
-
.justice_or_compassion ⇒ Object
Do you prefer retributes or rehabilitation?.
-
.memory ⇒ Object
Do you rely on memory or list making?.
-
.mind_or_heart ⇒ Object
Do you follow your heart or your head?.
-
.on_the_fly ⇒ Object
Do you do things on the fly, or plan ahead?.
-
.operate_quiz ⇒ Object
Operate the Default Quiz.
-
.organizational ⇒ Object
Do you like things to be chaotic or organized?.
-
.performance ⇒ Object
Do you like to perform in front of others?.
-
.planning ⇒ Object
Do you plan far ahead, or at the last minute?.
-
.procrastination ⇒ Object
Do you get work done right away or delay it?.
-
.relaxation_check ⇒ Object
Are you always mellow or do you relax?.
-
.retrospective ⇒ Object
Do you focus on the past, present, or future?.
-
.stand_out ⇒ Object
Do you fit in, or stand out like a sore thumb?.
-
.theory_or_practice ⇒ Object
Do you prefer speculating about the theory or practicing it?.
-
.what_is_that ⇒ Object
Do you prefer to know why something happened, or who, what, and when? Or both.
-
.work_ethic ⇒ Object
Do you work hard or slack off?.
-
.yelling_at_others ⇒ Object
Do you find it easy to yell at others?.
Class Method Details
.accepts_things ⇒ Object
Do you accept things the way they are?
32 33 |
# File 'lib/syncmind.rb', line 32 def self.accepts_things end |
.alone_time ⇒ Object
Do you prefer to be alone or with others?
28 29 |
# File 'lib/syncmind.rb', line 28 def self.alone_time end |
.automatic_decisions ⇒ Object
Do you make decisions first or think through them?
40 41 |
# File 'lib/syncmind.rb', line 40 def self.automatic_decisions end |
.big_picture ⇒ Object
Do you prefer the big picture or the forest?
112 113 |
# File 'lib/syncmind.rb', line 112 def self.big_picture end |
.cleanliness ⇒ Object
Do you keep a clean room or not?
36 37 |
# File 'lib/syncmind.rb', line 36 def self.cleanliness end |
.comfort_of_emotions ⇒ Object
Do you feel comfortable with your emotions?
136 137 |
# File 'lib/syncmind.rb', line 136 def self.comfort_of_emotions end |
.commitment ⇒ Object
Do you keep your options open, or commit to a task?
84 85 |
# File 'lib/syncmind.rb', line 84 def self.commitment end |
.conversational ⇒ Object
Do you prefer to talk, or be talked to?
92 93 |
# File 'lib/syncmind.rb', line 92 def self.conversational end |
.create_data_folder ⇒ Object
Creates a data folder on your computer with placeholder script if it doesn’t exist.
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/syncmind.rb', line 7 def self.create_data_folder # Creates a data folder on your computer with placeholder script if it doesn't exist. if File.directory?("data") puts "Data directory already exists." else system("mkdir data") open("data/script.txt", "w") { |f| f.puts "Hello World" } end end |
.critical_thinking ⇒ Object
Do you tend to rely on faith or evidence?
24 25 |
# File 'lib/syncmind.rb', line 24 def self.critical_thinking end |
.easy_answers ⇒ Object
Do you prefer yes or no answers, or multiple choice?
48 49 |
# File 'lib/syncmind.rb', line 48 def self.easy_answers end |
.event_recall ⇒ Object
Do you prefer to tell the exact event, or the meaning behind it.
96 97 |
# File 'lib/syncmind.rb', line 96 def self.event_recall end |
.fixing_others ⇒ Object
Do you want to fix other people, or do like being fixed?
88 89 |
# File 'lib/syncmind.rb', line 88 def self.fixing_others end |
.group_focus ⇒ Object
Do you work best in groups, or work best alone?
60 61 |
# File 'lib/syncmind.rb', line 60 def self.group_focus end |
.home_alone ⇒ Object
Do you prefer to stay at home or go out?
108 109 |
# File 'lib/syncmind.rb', line 108 def self.home_alone end |
.hurt_feelings ⇒ Object
Do you easily get your feelings hurt?
56 57 |
# File 'lib/syncmind.rb', line 56 def self.hurt_feelings end |
.introversion ⇒ Object
Do you get warn out at parties or fired up?
76 77 |
# File 'lib/syncmind.rb', line 76 def self.introversion end |
.issues_of_respect ⇒ Object
Do you prefer respect or love
72 73 |
# File 'lib/syncmind.rb', line 72 def self.issues_of_respect end |
.justice_or_compassion ⇒ Object
Do you prefer retributes or rehabilitation?
120 121 |
# File 'lib/syncmind.rb', line 120 def self.justice_or_compassion end |
.memory ⇒ Object
Do you rely on memory or list making?
20 21 |
# File 'lib/syncmind.rb', line 20 def self.memory end |
.mind_or_heart ⇒ Object
Do you follow your heart or your head?
104 105 |
# File 'lib/syncmind.rb', line 104 def self.mind_or_heart end |
.on_the_fly ⇒ Object
Do you do things on the fly, or plan ahead?
116 117 |
# File 'lib/syncmind.rb', line 116 def self.on_the_fly end |
.operate_quiz ⇒ Object
Operate the Default Quiz
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/syncmind.rb', line 148 def self.operate_quiz SyncMind::PersonalityQuiz.memory SyncMind::PersonalityQuiz.crtical_thinking SyncMind::PersonalityQuiz.alone_time SyncMind::PersonalityQuiz.accepts_things SyncMind::PersonalityQuiz.cleanliness SyncMind::PersonalityQuiz.automatic_decisions SyncMind::PersonalityQuiz.relaxation_check SyncMind::PersonalityQuiz.easy_answers SyncMind::PersonalityQuiz.organzational SyncMind::PersonalityQuiz.hurt_feelings SyncMind::PersonalityQuiz.group_focus SyncMind::PersonalityQuiz.retrospective SyncMind::PersonalityQuiz.planning SyncMind::PersonalityQuiz.issues_of_respect SyncMind::PersonalityQuiz.introversion SyncMind::PersonalityQuiz.stand_out SyncMind::PersonalityQuiz.commitment SyncMind::PersonalityQuiz.fixing_others SyncMind::PersonalityQuiz.conversational SyncMind::PersonalityQuiz.event_recall SyncMind::PersonalityQuiz.procrastination SyncMind::PersonalityQuiz.mind_or_heart SyncMind::PersonalityQuiz.home_alone SyncMind::PersonalityQuiz.big_picture SyncMind::PersonalityQuiz.on_the_fly SyncMind::PersonalityQuiz.justice_or_compassion SyncMind::PersonalityQuiz.yelling_at_others SyncMind::PersonalityQuiz.theory_or_practice SyncMind::PersonalityQuiz.work_ethic SyncMind::PersonalityQuiz.comfort_of_emotions SyncMind::PersonalityQuiz.performance SyncMind::PersonalityQuiz.what_is_that end |
.organizational ⇒ Object
Do you like things to be chaotic or organized?
52 53 |
# File 'lib/syncmind.rb', line 52 def self.organizational end |
.performance ⇒ Object
Do you like to perform in front of others?
140 141 |
# File 'lib/syncmind.rb', line 140 def self.performance end |
.planning ⇒ Object
Do you plan far ahead, or at the last minute?
68 69 |
# File 'lib/syncmind.rb', line 68 def self.planning end |
.procrastination ⇒ Object
Do you get work done right away or delay it?
100 101 |
# File 'lib/syncmind.rb', line 100 def self.procrastination end |
.relaxation_check ⇒ Object
Are you always mellow or do you relax?
44 45 |
# File 'lib/syncmind.rb', line 44 def self.relaxation_check end |
.retrospective ⇒ Object
Do you focus on the past, present, or future?
64 65 |
# File 'lib/syncmind.rb', line 64 def self.retrospective end |
.stand_out ⇒ Object
Do you fit in, or stand out like a sore thumb?
80 81 |
# File 'lib/syncmind.rb', line 80 def self.stand_out end |
.theory_or_practice ⇒ Object
Do you prefer speculating about the theory or practicing it?
128 129 |
# File 'lib/syncmind.rb', line 128 def self.theory_or_practice end |
.what_is_that ⇒ Object
Do you prefer to know why something happened, or who, what, and when? Or both.
144 145 |
# File 'lib/syncmind.rb', line 144 def self.what_is_that end |
.work_ethic ⇒ Object
Do you work hard or slack off?
132 133 |
# File 'lib/syncmind.rb', line 132 def self.work_ethic end |
.yelling_at_others ⇒ Object
Do you find it easy to yell at others?
124 125 |
# File 'lib/syncmind.rb', line 124 def self.yelling_at_others end |