helena 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +2 -0
- data/.gitignore +15 -0
- data/.rubocop.yml +16 -0
- data/.travis.yml +6 -0
- data/Gemfile +31 -0
- data/Gemfile.lock +290 -0
- data/LICENSE +16 -0
- data/README.md +90 -0
- data/Rakefile +29 -0
- data/app/assets/images/helena/.keep +0 -0
- data/app/assets/images/helena/helena_mobile_view.jpg +0 -0
- data/app/assets/images/helena/icons/export.svg +29 -0
- data/app/assets/images/helena/swissmadesoftware.png +0 -0
- data/app/assets/javascripts/helena/application.js +4 -0
- data/app/assets/javascripts/helena/survey.js +2 -0
- data/app/assets/stylesheets/helena/admin/labels.css.sass +7 -0
- data/app/assets/stylesheets/helena/admin/layout.css.sass +6 -0
- data/app/assets/stylesheets/helena/admin/question_groups.css.sass +7 -0
- data/app/assets/stylesheets/helena/admin/questions.css.sass +9 -0
- data/app/assets/stylesheets/helena/admin/sessions.css.sass +5 -0
- data/app/assets/stylesheets/helena/admin/subquestions.css.sass +7 -0
- data/app/assets/stylesheets/helena/admin/versions.css.sass +9 -0
- data/app/assets/stylesheets/helena/application.css.sass +21 -0
- data/app/assets/stylesheets/helena/forms.css.sass +13 -0
- data/app/assets/stylesheets/helena/layout.css.sass +3 -0
- data/app/assets/stylesheets/helena/question_groups.css.sass +4 -0
- data/app/controllers/helena/admin/application_controller.rb +31 -0
- data/app/controllers/helena/admin/question_groups_controller.rb +78 -0
- data/app/controllers/helena/admin/questions/checkbox_groups_controller.rb +17 -0
- data/app/controllers/helena/admin/questions/checkbox_matrix_controller.rb +9 -0
- data/app/controllers/helena/admin/questions/long_texts_controller.rb +13 -0
- data/app/controllers/helena/admin/questions/radio_groups_controller.rb +17 -0
- data/app/controllers/helena/admin/questions/radio_matrix_controller.rb +9 -0
- data/app/controllers/helena/admin/questions/short_texts_controller.rb +13 -0
- data/app/controllers/helena/admin/questions/static_texts_controller.rb +13 -0
- data/app/controllers/helena/admin/questions_controller.rb +105 -0
- data/app/controllers/helena/admin/sessions_controller.rb +35 -0
- data/app/controllers/helena/admin/surveys_controller.rb +78 -0
- data/app/controllers/helena/admin/versions_controller.rb +71 -0
- data/app/controllers/helena/application_controller.rb +15 -0
- data/app/controllers/helena/concerns/questions/matrix_questions.rb +24 -0
- data/app/controllers/helena/sessions_controller.rb +93 -0
- data/app/controllers/helena/surveys_controller.rb +11 -0
- data/app/helpers/helena/application_helper.rb +4 -0
- data/app/models/helena/answer.rb +48 -0
- data/app/models/helena/boolean_answer.rb +5 -0
- data/app/models/helena/concerns/application_model.rb +19 -0
- data/app/models/helena/concerns/questions/requirable.rb +19 -0
- data/app/models/helena/concerns/questions/validates_one_label.rb +22 -0
- data/app/models/helena/integer_answer.rb +5 -0
- data/app/models/helena/label.rb +18 -0
- data/app/models/helena/question.rb +63 -0
- data/app/models/helena/question_group.rb +18 -0
- data/app/models/helena/questions/checkbox_group.rb +17 -0
- data/app/models/helena/questions/long_text.rb +9 -0
- data/app/models/helena/questions/radio_group.rb +12 -0
- data/app/models/helena/questions/radio_matrix.rb +24 -0
- data/app/models/helena/questions/short_text.rb +9 -0
- data/app/models/helena/questions/static_text.rb +7 -0
- data/app/models/helena/session.rb +76 -0
- data/app/models/helena/string_answer.rb +5 -0
- data/app/models/helena/sub_question.rb +27 -0
- data/app/models/helena/survey.rb +29 -0
- data/app/models/helena/survey_detail.rb +10 -0
- data/app/models/helena/version.rb +33 -0
- data/app/views/helena/admin/question_groups/_form.html.haml +3 -0
- data/app/views/helena/admin/question_groups/edit.html.haml +3 -0
- data/app/views/helena/admin/question_groups/index.html.haml +41 -0
- data/app/views/helena/admin/question_groups/new.html.haml +3 -0
- data/app/views/helena/admin/questions/_form.html.haml +15 -0
- data/app/views/helena/admin/questions/_labels.html.haml +24 -0
- data/app/views/helena/admin/questions/_sub_questions.html.haml +32 -0
- data/app/views/helena/admin/questions/edit.html.haml +3 -0
- data/app/views/helena/admin/questions/index.html.haml +49 -0
- data/app/views/helena/admin/questions/new.html.haml +3 -0
- data/app/views/helena/admin/sessions/index.html.haml +46 -0
- data/app/views/helena/admin/surveys/_form.html.haml +10 -0
- data/app/views/helena/admin/surveys/edit.html.haml +5 -0
- data/app/views/helena/admin/surveys/index.html.haml +35 -0
- data/app/views/helena/admin/surveys/new.html.haml +3 -0
- data/app/views/helena/admin/versions/_form.html.haml +5 -0
- data/app/views/helena/admin/versions/default_session_report.html.haml +17 -0
- data/app/views/helena/admin/versions/edit.html.haml +3 -0
- data/app/views/helena/admin/versions/index.html.haml +35 -0
- data/app/views/helena/admin/versions/new.html.haml +3 -0
- data/app/views/helena/questions/_checkbox_group.html.haml +17 -0
- data/app/views/helena/questions/_long_text.html.haml +8 -0
- data/app/views/helena/questions/_radio_group.html.haml +13 -0
- data/app/views/helena/questions/_radio_matrix.html.haml +27 -0
- data/app/views/helena/questions/_short_text.html.haml +8 -0
- data/app/views/helena/sessions/edit.html.haml +16 -0
- data/app/views/helena/sessions/end_message.html.haml +5 -0
- data/app/views/helena/surveys/_survey.html.haml +3 -0
- data/app/views/helena/surveys/index.html.haml +2 -0
- data/bin/rails +8 -0
- data/config/i18n-tasks.yml +3 -0
- data/config/initializers/simple_form.rb +162 -0
- data/config/initializers/simple_form_bootstrap.rb +132 -0
- data/config/locales/en.yml +20 -0
- data/config/locales/models/label/en.yml +14 -0
- data/config/locales/models/question/en.yml +47 -0
- data/config/locales/models/question_group/en.yml +11 -0
- data/config/locales/models/session/en.yml +10 -0
- data/config/locales/models/sub_question/en.yml +14 -0
- data/config/locales/models/survey/en.yml +6 -0
- data/config/locales/models/version/en.yml +12 -0
- data/config/locales/simple_form.en.yml +26 -0
- data/config/locales/views/admin/question_groups/en.yml +12 -0
- data/config/locales/views/admin/questions/en.yml +16 -0
- data/config/locales/views/admin/sessions/en.yml +11 -0
- data/config/locales/views/admin/surveys/en.yml +10 -0
- data/config/locales/views/admin/versions/en.yml +8 -0
- data/config/locales/views/sessions/en.yml +9 -0
- data/config/routes.rb +28 -0
- data/db/seeds.rb +182 -0
- data/gpl-3.0.txt +674 -0
- data/helena.gemspec +40 -0
- data/lib/helena/engine.rb +6 -0
- data/lib/helena/version.rb +3 -0
- data/lib/helena/version_publisher.rb +16 -0
- data/lib/helena.rb +10 -0
- data/lib/tasks/helena_tasks.rake +4 -0
- data/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/spec/controllers/helena/admin/question_group_controller_spec.rb +59 -0
- data/spec/controllers/helena/admin/questions_controller_spec.rb +60 -0
- data/spec/controllers/helena/admin/sessions_controller_spec.rb +84 -0
- data/spec/controllers/helena/admin/survey_controller_spec.rb +89 -0
- data/spec/controllers/helena/admin/versions_controller_spec.rb +19 -0
- data/spec/controllers/helena/application_controller_spec.rb +15 -0
- data/spec/controllers/helena/sessions_controller_spec.rb +24 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +9 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.haml +24 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +27 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/mongoid.yml +14 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/seeds.rb +1 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/factories/helena/answers.rb +24 -0
- data/spec/factories/helena/labels.rb +7 -0
- data/spec/factories/helena/question_groups.rb +6 -0
- data/spec/factories/helena/questions.rb +14 -0
- data/spec/factories/helena/sessions.rb +9 -0
- data/spec/factories/helena/sub_questions.rb +7 -0
- data/spec/factories/helena/survey_details.rb +6 -0
- data/spec/factories/helena/surveys.rb +7 -0
- data/spec/factories/helena/versions.rb +11 -0
- data/spec/features/helena/admin/manage_question_group_spec.rb +101 -0
- data/spec/features/helena/admin/manage_question_spec.rb +105 -0
- data/spec/features/helena/admin/manage_session_spec.rb +40 -0
- data/spec/features/helena/admin/manage_survey_spec.rb +141 -0
- data/spec/features/helena/admin/manage_version_spec.rb +74 -0
- data/spec/features/helena/admin/question_types/manage_checkbox_group_question_spec.rb +55 -0
- data/spec/features/helena/admin/question_types/manage_long_text_question_spec.rb +21 -0
- data/spec/features/helena/admin/question_types/manage_radio_group_question_spec.rb +59 -0
- data/spec/features/helena/admin/question_types/manage_radio_matrix_question_spec.rb +80 -0
- data/spec/features/helena/admin/question_types/manage_short_text_question_spec.rb +19 -0
- data/spec/features/helena/admin/question_types/manage_static_text_question_spec.rb +17 -0
- data/spec/features/helena/manage_session_spec.rb +284 -0
- data/spec/features/helena/manage_survey_spec.rb +24 -0
- data/spec/lib/version_publisher_spec.rb +26 -0
- data/spec/models/helena/answer_spec.rb +53 -0
- data/spec/models/helena/label_spec.rb +13 -0
- data/spec/models/helena/question_group_spec.rb +11 -0
- data/spec/models/helena/question_spec.rb +21 -0
- data/spec/models/helena/questions/radio_group_spec.rb +32 -0
- data/spec/models/helena/questions/radio_matrix_spec.rb +32 -0
- data/spec/models/helena/questions/short_text_spec.rb +10 -0
- data/spec/models/helena/session_spec.rb +20 -0
- data/spec/models/helena/sub_question_spec.rb +28 -0
- data/spec/models/helena/survey_spec.rb +14 -0
- data/spec/models/helena/version_spec.rb +15 -0
- data/spec/spec_helper.rb +43 -0
- metadata +485 -0
metadata
ADDED
@@ -0,0 +1,485 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: helena
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Markus Graf
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: mongoid
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 4.0.0.rc2
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 4.0.0.rc2
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: mongoid_orderable
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '4.1'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '4.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: mongoid-simple-tags
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.1'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: haml-rails
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.5'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.5'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: jquery-rails
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '3.1'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '3.1'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: sass-rails
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 4.0.3
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 4.0.3
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: bootstrap-sass
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '3.2'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '3.2'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: simple_form
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 3.1.0.rc2
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 3.1.0.rc2
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: breadcrumbs_on_rails
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '2.3'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '2.3'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: rails-i18n
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '4.0'
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '4.0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: rspec-rails
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '3'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '3'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: rspec-collection_matchers
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '1'
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - "~>"
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '1'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: factory_girl_rails
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - "~>"
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '4.4'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - "~>"
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '4.4'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: database_cleaner
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - "~>"
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '1.3'
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - "~>"
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '1.3'
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: ffaker
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - "~>"
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: '1.23'
|
230
|
+
type: :development
|
231
|
+
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - "~>"
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '1.23'
|
237
|
+
- !ruby/object:Gem::Dependency
|
238
|
+
name: capybara
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - "~>"
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: '2.3'
|
244
|
+
type: :development
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - "~>"
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: '2.3'
|
251
|
+
description: |-
|
252
|
+
Helena is an online survey/test framework designed for agile
|
253
|
+
survey/test development, longitudinal studies and instant feedback.
|
254
|
+
email:
|
255
|
+
- info@markusgraf.ch
|
256
|
+
executables: []
|
257
|
+
extensions: []
|
258
|
+
extra_rdoc_files: []
|
259
|
+
files:
|
260
|
+
- ".coveralls.yml"
|
261
|
+
- ".gitignore"
|
262
|
+
- ".rubocop.yml"
|
263
|
+
- ".travis.yml"
|
264
|
+
- Gemfile
|
265
|
+
- Gemfile.lock
|
266
|
+
- LICENSE
|
267
|
+
- README.md
|
268
|
+
- Rakefile
|
269
|
+
- app/assets/images/helena/.keep
|
270
|
+
- app/assets/images/helena/helena_mobile_view.jpg
|
271
|
+
- app/assets/images/helena/icons/export.svg
|
272
|
+
- app/assets/images/helena/swissmadesoftware.png
|
273
|
+
- app/assets/javascripts/helena/application.js
|
274
|
+
- app/assets/javascripts/helena/survey.js
|
275
|
+
- app/assets/stylesheets/helena/admin/labels.css.sass
|
276
|
+
- app/assets/stylesheets/helena/admin/layout.css.sass
|
277
|
+
- app/assets/stylesheets/helena/admin/question_groups.css.sass
|
278
|
+
- app/assets/stylesheets/helena/admin/questions.css.sass
|
279
|
+
- app/assets/stylesheets/helena/admin/sessions.css.sass
|
280
|
+
- app/assets/stylesheets/helena/admin/subquestions.css.sass
|
281
|
+
- app/assets/stylesheets/helena/admin/versions.css.sass
|
282
|
+
- app/assets/stylesheets/helena/application.css.sass
|
283
|
+
- app/assets/stylesheets/helena/forms.css.sass
|
284
|
+
- app/assets/stylesheets/helena/layout.css.sass
|
285
|
+
- app/assets/stylesheets/helena/question_groups.css.sass
|
286
|
+
- app/controllers/helena/admin/application_controller.rb
|
287
|
+
- app/controllers/helena/admin/question_groups_controller.rb
|
288
|
+
- app/controllers/helena/admin/questions/checkbox_groups_controller.rb
|
289
|
+
- app/controllers/helena/admin/questions/checkbox_matrix_controller.rb
|
290
|
+
- app/controllers/helena/admin/questions/long_texts_controller.rb
|
291
|
+
- app/controllers/helena/admin/questions/radio_groups_controller.rb
|
292
|
+
- app/controllers/helena/admin/questions/radio_matrix_controller.rb
|
293
|
+
- app/controllers/helena/admin/questions/short_texts_controller.rb
|
294
|
+
- app/controllers/helena/admin/questions/static_texts_controller.rb
|
295
|
+
- app/controllers/helena/admin/questions_controller.rb
|
296
|
+
- app/controllers/helena/admin/sessions_controller.rb
|
297
|
+
- app/controllers/helena/admin/surveys_controller.rb
|
298
|
+
- app/controllers/helena/admin/versions_controller.rb
|
299
|
+
- app/controllers/helena/application_controller.rb
|
300
|
+
- app/controllers/helena/concerns/questions/matrix_questions.rb
|
301
|
+
- app/controllers/helena/sessions_controller.rb
|
302
|
+
- app/controllers/helena/surveys_controller.rb
|
303
|
+
- app/helpers/helena/application_helper.rb
|
304
|
+
- app/models/helena/answer.rb
|
305
|
+
- app/models/helena/boolean_answer.rb
|
306
|
+
- app/models/helena/concerns/application_model.rb
|
307
|
+
- app/models/helena/concerns/questions/requirable.rb
|
308
|
+
- app/models/helena/concerns/questions/validates_one_label.rb
|
309
|
+
- app/models/helena/integer_answer.rb
|
310
|
+
- app/models/helena/label.rb
|
311
|
+
- app/models/helena/question.rb
|
312
|
+
- app/models/helena/question_group.rb
|
313
|
+
- app/models/helena/questions/checkbox_group.rb
|
314
|
+
- app/models/helena/questions/long_text.rb
|
315
|
+
- app/models/helena/questions/radio_group.rb
|
316
|
+
- app/models/helena/questions/radio_matrix.rb
|
317
|
+
- app/models/helena/questions/short_text.rb
|
318
|
+
- app/models/helena/questions/static_text.rb
|
319
|
+
- app/models/helena/session.rb
|
320
|
+
- app/models/helena/string_answer.rb
|
321
|
+
- app/models/helena/sub_question.rb
|
322
|
+
- app/models/helena/survey.rb
|
323
|
+
- app/models/helena/survey_detail.rb
|
324
|
+
- app/models/helena/version.rb
|
325
|
+
- app/views/helena/admin/question_groups/_form.html.haml
|
326
|
+
- app/views/helena/admin/question_groups/edit.html.haml
|
327
|
+
- app/views/helena/admin/question_groups/index.html.haml
|
328
|
+
- app/views/helena/admin/question_groups/new.html.haml
|
329
|
+
- app/views/helena/admin/questions/_form.html.haml
|
330
|
+
- app/views/helena/admin/questions/_labels.html.haml
|
331
|
+
- app/views/helena/admin/questions/_sub_questions.html.haml
|
332
|
+
- app/views/helena/admin/questions/edit.html.haml
|
333
|
+
- app/views/helena/admin/questions/index.html.haml
|
334
|
+
- app/views/helena/admin/questions/new.html.haml
|
335
|
+
- app/views/helena/admin/sessions/index.html.haml
|
336
|
+
- app/views/helena/admin/surveys/_form.html.haml
|
337
|
+
- app/views/helena/admin/surveys/edit.html.haml
|
338
|
+
- app/views/helena/admin/surveys/index.html.haml
|
339
|
+
- app/views/helena/admin/surveys/new.html.haml
|
340
|
+
- app/views/helena/admin/versions/_form.html.haml
|
341
|
+
- app/views/helena/admin/versions/default_session_report.html.haml
|
342
|
+
- app/views/helena/admin/versions/edit.html.haml
|
343
|
+
- app/views/helena/admin/versions/index.html.haml
|
344
|
+
- app/views/helena/admin/versions/new.html.haml
|
345
|
+
- app/views/helena/questions/_checkbox_group.html.haml
|
346
|
+
- app/views/helena/questions/_long_text.html.haml
|
347
|
+
- app/views/helena/questions/_radio_group.html.haml
|
348
|
+
- app/views/helena/questions/_radio_matrix.html.haml
|
349
|
+
- app/views/helena/questions/_short_text.html.haml
|
350
|
+
- app/views/helena/sessions/edit.html.haml
|
351
|
+
- app/views/helena/sessions/end_message.html.haml
|
352
|
+
- app/views/helena/surveys/_survey.html.haml
|
353
|
+
- app/views/helena/surveys/index.html.haml
|
354
|
+
- bin/rails
|
355
|
+
- config/i18n-tasks.yml
|
356
|
+
- config/initializers/simple_form.rb
|
357
|
+
- config/initializers/simple_form_bootstrap.rb
|
358
|
+
- config/locales/en.yml
|
359
|
+
- config/locales/models/label/en.yml
|
360
|
+
- config/locales/models/question/en.yml
|
361
|
+
- config/locales/models/question_group/en.yml
|
362
|
+
- config/locales/models/session/en.yml
|
363
|
+
- config/locales/models/sub_question/en.yml
|
364
|
+
- config/locales/models/survey/en.yml
|
365
|
+
- config/locales/models/version/en.yml
|
366
|
+
- config/locales/simple_form.en.yml
|
367
|
+
- config/locales/views/admin/question_groups/en.yml
|
368
|
+
- config/locales/views/admin/questions/en.yml
|
369
|
+
- config/locales/views/admin/sessions/en.yml
|
370
|
+
- config/locales/views/admin/surveys/en.yml
|
371
|
+
- config/locales/views/admin/versions/en.yml
|
372
|
+
- config/locales/views/sessions/en.yml
|
373
|
+
- config/routes.rb
|
374
|
+
- db/seeds.rb
|
375
|
+
- gpl-3.0.txt
|
376
|
+
- helena.gemspec
|
377
|
+
- lib/helena.rb
|
378
|
+
- lib/helena/engine.rb
|
379
|
+
- lib/helena/version.rb
|
380
|
+
- lib/helena/version_publisher.rb
|
381
|
+
- lib/tasks/helena_tasks.rake
|
382
|
+
- lib/templates/erb/scaffold/_form.html.erb
|
383
|
+
- spec/controllers/helena/admin/question_group_controller_spec.rb
|
384
|
+
- spec/controllers/helena/admin/questions_controller_spec.rb
|
385
|
+
- spec/controllers/helena/admin/sessions_controller_spec.rb
|
386
|
+
- spec/controllers/helena/admin/survey_controller_spec.rb
|
387
|
+
- spec/controllers/helena/admin/versions_controller_spec.rb
|
388
|
+
- spec/controllers/helena/application_controller_spec.rb
|
389
|
+
- spec/controllers/helena/sessions_controller_spec.rb
|
390
|
+
- spec/dummy/README.rdoc
|
391
|
+
- spec/dummy/Rakefile
|
392
|
+
- spec/dummy/app/assets/images/.keep
|
393
|
+
- spec/dummy/app/assets/javascripts/application.js
|
394
|
+
- spec/dummy/app/controllers/application_controller.rb
|
395
|
+
- spec/dummy/app/controllers/concerns/.keep
|
396
|
+
- spec/dummy/app/helpers/application_helper.rb
|
397
|
+
- spec/dummy/app/mailers/.keep
|
398
|
+
- spec/dummy/app/models/.keep
|
399
|
+
- spec/dummy/app/models/concerns/.keep
|
400
|
+
- spec/dummy/app/views/layouts/application.html.haml
|
401
|
+
- spec/dummy/bin/bundle
|
402
|
+
- spec/dummy/bin/rails
|
403
|
+
- spec/dummy/bin/rake
|
404
|
+
- spec/dummy/config.ru
|
405
|
+
- spec/dummy/config/application.rb
|
406
|
+
- spec/dummy/config/boot.rb
|
407
|
+
- spec/dummy/config/environment.rb
|
408
|
+
- spec/dummy/config/environments/development.rb
|
409
|
+
- spec/dummy/config/environments/production.rb
|
410
|
+
- spec/dummy/config/environments/test.rb
|
411
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
412
|
+
- spec/dummy/config/initializers/secret_token.rb
|
413
|
+
- spec/dummy/config/initializers/session_store.rb
|
414
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
415
|
+
- spec/dummy/config/locales/en.yml
|
416
|
+
- spec/dummy/config/mongoid.yml
|
417
|
+
- spec/dummy/config/routes.rb
|
418
|
+
- spec/dummy/db/seeds.rb
|
419
|
+
- spec/dummy/lib/assets/.keep
|
420
|
+
- spec/dummy/log/.keep
|
421
|
+
- spec/dummy/public/404.html
|
422
|
+
- spec/dummy/public/422.html
|
423
|
+
- spec/dummy/public/500.html
|
424
|
+
- spec/dummy/public/favicon.ico
|
425
|
+
- spec/factories/helena/answers.rb
|
426
|
+
- spec/factories/helena/labels.rb
|
427
|
+
- spec/factories/helena/question_groups.rb
|
428
|
+
- spec/factories/helena/questions.rb
|
429
|
+
- spec/factories/helena/sessions.rb
|
430
|
+
- spec/factories/helena/sub_questions.rb
|
431
|
+
- spec/factories/helena/survey_details.rb
|
432
|
+
- spec/factories/helena/surveys.rb
|
433
|
+
- spec/factories/helena/versions.rb
|
434
|
+
- spec/features/helena/admin/manage_question_group_spec.rb
|
435
|
+
- spec/features/helena/admin/manage_question_spec.rb
|
436
|
+
- spec/features/helena/admin/manage_session_spec.rb
|
437
|
+
- spec/features/helena/admin/manage_survey_spec.rb
|
438
|
+
- spec/features/helena/admin/manage_version_spec.rb
|
439
|
+
- spec/features/helena/admin/question_types/manage_checkbox_group_question_spec.rb
|
440
|
+
- spec/features/helena/admin/question_types/manage_long_text_question_spec.rb
|
441
|
+
- spec/features/helena/admin/question_types/manage_radio_group_question_spec.rb
|
442
|
+
- spec/features/helena/admin/question_types/manage_radio_matrix_question_spec.rb
|
443
|
+
- spec/features/helena/admin/question_types/manage_short_text_question_spec.rb
|
444
|
+
- spec/features/helena/admin/question_types/manage_static_text_question_spec.rb
|
445
|
+
- spec/features/helena/manage_session_spec.rb
|
446
|
+
- spec/features/helena/manage_survey_spec.rb
|
447
|
+
- spec/lib/version_publisher_spec.rb
|
448
|
+
- spec/models/helena/answer_spec.rb
|
449
|
+
- spec/models/helena/label_spec.rb
|
450
|
+
- spec/models/helena/question_group_spec.rb
|
451
|
+
- spec/models/helena/question_spec.rb
|
452
|
+
- spec/models/helena/questions/radio_group_spec.rb
|
453
|
+
- spec/models/helena/questions/radio_matrix_spec.rb
|
454
|
+
- spec/models/helena/questions/short_text_spec.rb
|
455
|
+
- spec/models/helena/session_spec.rb
|
456
|
+
- spec/models/helena/sub_question_spec.rb
|
457
|
+
- spec/models/helena/survey_spec.rb
|
458
|
+
- spec/models/helena/version_spec.rb
|
459
|
+
- spec/spec_helper.rb
|
460
|
+
homepage: https://github.com/gurix/helena
|
461
|
+
licenses:
|
462
|
+
- GPL-3
|
463
|
+
metadata: {}
|
464
|
+
post_install_message:
|
465
|
+
rdoc_options: []
|
466
|
+
require_paths:
|
467
|
+
- lib
|
468
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
469
|
+
requirements:
|
470
|
+
- - ">="
|
471
|
+
- !ruby/object:Gem::Version
|
472
|
+
version: '0'
|
473
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
474
|
+
requirements:
|
475
|
+
- - ">="
|
476
|
+
- !ruby/object:Gem::Version
|
477
|
+
version: '0'
|
478
|
+
requirements: []
|
479
|
+
rubyforge_project:
|
480
|
+
rubygems_version: 2.2.2
|
481
|
+
signing_key:
|
482
|
+
specification_version: 4
|
483
|
+
summary: Helena is an online survey/test framework designed for agile survey/test
|
484
|
+
development, longitudinal studies and instant feedback.
|
485
|
+
test_files: []
|