helena 1.3.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +12 -7
- data/.travis.yml +11 -0
- data/Gemfile +6 -3
- data/Gemfile.lock +175 -188
- data/README.md +3 -4
- data/Rakefile +1 -2
- data/app/assets/javascripts/helena/application.js +0 -1
- data/app/assets/stylesheets/helena/{application.css.sass → application.scss} +0 -8
- data/app/controllers/helena/sessions_controller.rb +7 -1
- data/app/helpers/helena/application_helper.rb +18 -0
- data/app/models/helena/concerns/questions/validates_one_label.rb +1 -0
- data/app/models/helena/question.rb +1 -0
- data/app/models/helena/question_group.rb +8 -0
- data/app/models/helena/questions/static_text.rb +4 -0
- data/app/models/helena/session.rb +1 -19
- data/app/models/helena/sub_question.rb +1 -0
- data/app/models/helena/version.rb +4 -0
- data/app/views/helena/questions/_bipolar_radio_matrix.html.slim +36 -0
- data/app/views/helena/questions/{_checkbox_group.html.haml → _checkbox_group.html.slim} +6 -8
- data/app/views/helena/questions/_long_text.html.slim +9 -0
- data/app/views/helena/questions/{_radio_group.html.haml → _radio_group.html.slim} +5 -6
- data/app/views/helena/questions/_radio_matrix.html.slim +27 -0
- data/app/views/helena/questions/_short_text.html.slim +9 -0
- data/app/views/helena/questions/_static_text.html.slim +2 -4
- data/app/views/helena/sessions/_error_messages.html.slim +8 -0
- data/app/views/helena/sessions/edit.html.slim +11 -7
- data/app/views/helena/sessions/end_message.html.slim +1 -1
- data/config/locales/en.yml +13 -12
- data/config/locales/views/sessions/en.yml +1 -0
- data/gemfiles/rails_4.2.gemfile +18 -15
- data/gemfiles/rails_4.2.gemfile.lock +96 -117
- data/gemfiles/rails_5.1.gemfile +6 -3
- data/gemfiles/rails_5.1.gemfile.lock +127 -146
- data/helena.gemspec +16 -20
- data/lib/helena.rb +0 -3
- data/lib/helena/engine.rb +1 -1
- data/lib/helena/survey_importer.rb +4 -1
- data/lib/helena/version.rb +1 -1
- data/spec/controllers/helena/sessions_controller_spec.rb +2 -2
- data/spec/dummy/Rakefile +1 -1
- data/spec/dummy/app/views/layouts/{application.html.haml → application.html.slim} +10 -10
- data/spec/dummy/bin/bundle +1 -1
- data/spec/dummy/bin/rails +1 -1
- data/spec/dummy/config/application.rb +1 -2
- data/spec/dummy/config/boot.rb +2 -2
- data/spec/dummy/config/environment.rb +1 -1
- data/spec/factories/helena/surveys.rb +1 -1
- data/spec/features/helena/manage_session_spec.rb +40 -36
- data/spec/helpers/application_helper_spec.rb +10 -0
- data/spec/models/helena/session_spec.rb +1 -8
- data/spec/models/helena/sub_question_spec.rb +1 -1
- data/spec/spec_helper.rb +3 -1
- data/spec/support/rails_compatibility.rb +1 -1
- data/test_all_gemfiles.sh +7 -0
- metadata +72 -131
- data/.coveralls.yml +0 -2
- data/Appraisals +0 -12
- data/app/assets/stylesheets/helena/forms.css.sass +0 -13
- data/app/assets/stylesheets/helena/layout.css.sass +0 -3
- data/app/assets/stylesheets/helena/question_groups.css.sass +0 -4
- data/app/views/helena/questions/_bipolar_radio_matrix.html.haml +0 -56
- data/app/views/helena/questions/_long_text.html.haml +0 -8
- data/app/views/helena/questions/_radio_matrix.html.haml +0 -53
- data/app/views/helena/questions/_short_text.html.haml +0 -8
- data/config/initializers/simple_form_bootstrap.rb +0 -132
data/gemfiles/rails_4.2.gemfile
CHANGED
@@ -1,22 +1,25 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
|
-
gem
|
6
|
-
gem
|
5
|
+
gem 'mongoid-rspec', group: %i[development test]
|
6
|
+
gem 'rails', ' ~> 4.2'
|
7
7
|
|
8
8
|
group :development, :test do
|
9
|
-
gem
|
10
|
-
gem
|
11
|
-
gem
|
12
|
-
gem
|
13
|
-
gem
|
14
|
-
gem
|
15
|
-
gem
|
16
|
-
gem
|
17
|
-
gem
|
18
|
-
gem
|
19
|
-
gem "shoulda-matchers"
|
9
|
+
gem 'better_errors'
|
10
|
+
gem 'binding_of_caller'
|
11
|
+
gem 'jquery-rails'
|
12
|
+
gem 'launchy'
|
13
|
+
gem 'pry'
|
14
|
+
gem 'pry-byebug'
|
15
|
+
gem 'ruby-progressbar'
|
16
|
+
gem 'selenium-webdriver'
|
17
|
+
gem 'shoulda-matchers'
|
18
|
+
gem 'simple_form'
|
20
19
|
end
|
21
20
|
|
22
|
-
|
21
|
+
group :test do
|
22
|
+
gem 'simplecov', require: false
|
23
|
+
end
|
24
|
+
|
25
|
+
gemspec path: '../'
|
@@ -1,55 +1,51 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
helena (
|
5
|
-
bootstrap-sass (~> 3.2)
|
6
|
-
browser (~> 2.0)
|
7
|
-
haml-rails (~> 1.0)
|
8
|
-
jquery-rails (~> 4.0)
|
4
|
+
helena (2.0.0)
|
9
5
|
mongoid (>= 4.0)
|
10
6
|
mongoid-simple-tags (>= 0.1.3)
|
11
|
-
mongoid-tree (
|
12
|
-
mongoid_orderable (
|
7
|
+
mongoid-tree (>= 2.0)
|
8
|
+
mongoid_orderable (>= 5.2)
|
13
9
|
rails (>= 4.2)
|
14
10
|
rails-i18n (>= 4.0)
|
15
|
-
responders (
|
16
|
-
sass-rails (
|
17
|
-
simple_form (
|
18
|
-
slim (
|
11
|
+
responders (>= 2.0)
|
12
|
+
sass-rails (>= 5.0)
|
13
|
+
simple_form (>= 4)
|
14
|
+
slim (>= 3.0)
|
19
15
|
|
20
16
|
GEM
|
21
17
|
remote: https://rubygems.org/
|
22
18
|
specs:
|
23
|
-
actionmailer (4.2.
|
24
|
-
actionpack (= 4.2.
|
25
|
-
actionview (= 4.2.
|
26
|
-
activejob (= 4.2.
|
19
|
+
actionmailer (4.2.11)
|
20
|
+
actionpack (= 4.2.11)
|
21
|
+
actionview (= 4.2.11)
|
22
|
+
activejob (= 4.2.11)
|
27
23
|
mail (~> 2.5, >= 2.5.4)
|
28
24
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
29
|
-
actionpack (4.2.
|
30
|
-
actionview (= 4.2.
|
31
|
-
activesupport (= 4.2.
|
25
|
+
actionpack (4.2.11)
|
26
|
+
actionview (= 4.2.11)
|
27
|
+
activesupport (= 4.2.11)
|
32
28
|
rack (~> 1.6)
|
33
29
|
rack-test (~> 0.6.2)
|
34
30
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
35
31
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
36
|
-
actionview (4.2.
|
37
|
-
activesupport (= 4.2.
|
32
|
+
actionview (4.2.11)
|
33
|
+
activesupport (= 4.2.11)
|
38
34
|
builder (~> 3.1)
|
39
35
|
erubis (~> 2.7.0)
|
40
36
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
41
37
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
42
|
-
activejob (4.2.
|
43
|
-
activesupport (= 4.2.
|
38
|
+
activejob (4.2.11)
|
39
|
+
activesupport (= 4.2.11)
|
44
40
|
globalid (>= 0.3.0)
|
45
|
-
activemodel (4.2.
|
46
|
-
activesupport (= 4.2.
|
41
|
+
activemodel (4.2.11)
|
42
|
+
activesupport (= 4.2.11)
|
47
43
|
builder (~> 3.1)
|
48
|
-
activerecord (4.2.
|
49
|
-
activemodel (= 4.2.
|
50
|
-
activesupport (= 4.2.
|
44
|
+
activerecord (4.2.11)
|
45
|
+
activemodel (= 4.2.11)
|
46
|
+
activesupport (= 4.2.11)
|
51
47
|
arel (~> 6.0)
|
52
|
-
activesupport (4.2.
|
48
|
+
activesupport (4.2.11)
|
53
49
|
i18n (~> 0.7)
|
54
50
|
minitest (~> 5.1)
|
55
51
|
thread_safe (~> 0.3, >= 0.3.4)
|
@@ -61,18 +57,12 @@ GEM
|
|
61
57
|
rake
|
62
58
|
thor (>= 0.14.0)
|
63
59
|
arel (6.0.4)
|
64
|
-
|
65
|
-
execjs
|
66
|
-
better_errors (2.4.0)
|
60
|
+
better_errors (2.5.0)
|
67
61
|
coderay (>= 1.0.0)
|
68
62
|
erubi (>= 1.0.0)
|
69
63
|
rack (>= 0.9.0)
|
70
64
|
binding_of_caller (0.8.0)
|
71
65
|
debug_inspector (>= 0.0.1)
|
72
|
-
bootstrap-sass (3.3.7)
|
73
|
-
autoprefixer-rails (>= 5.2.1)
|
74
|
-
sass (>= 3.3.4)
|
75
|
-
browser (2.5.3)
|
76
66
|
bson (4.3.0)
|
77
67
|
builder (3.2.3)
|
78
68
|
byebug (10.0.2)
|
@@ -86,37 +76,23 @@ GEM
|
|
86
76
|
childprocess (0.9.0)
|
87
77
|
ffi (~> 1.0, >= 1.0.11)
|
88
78
|
coderay (1.1.2)
|
89
|
-
concurrent-ruby (1.
|
79
|
+
concurrent-ruby (1.1.3)
|
90
80
|
crass (1.0.4)
|
91
81
|
debug_inspector (0.0.3)
|
92
82
|
diff-lcs (1.3)
|
83
|
+
docile (1.3.1)
|
93
84
|
erubi (1.7.1)
|
94
85
|
erubis (2.7.0)
|
95
|
-
|
96
|
-
factory_bot (4.10.0)
|
86
|
+
factory_bot (4.11.1)
|
97
87
|
activesupport (>= 3.0.0)
|
98
|
-
factory_bot_rails (4.
|
99
|
-
factory_bot (~> 4.
|
88
|
+
factory_bot_rails (4.11.1)
|
89
|
+
factory_bot (~> 4.11.1)
|
100
90
|
railties (>= 3.0.0)
|
101
91
|
faker (1.9.1)
|
102
92
|
i18n (>= 0.7)
|
103
93
|
ffi (1.9.25)
|
104
94
|
globalid (0.4.1)
|
105
95
|
activesupport (>= 4.2.0)
|
106
|
-
haml (5.0.4)
|
107
|
-
temple (>= 0.8.0)
|
108
|
-
tilt
|
109
|
-
haml-rails (1.0.0)
|
110
|
-
actionpack (>= 4.0.1)
|
111
|
-
activesupport (>= 4.0.1)
|
112
|
-
haml (>= 4.0.6, < 6.0)
|
113
|
-
html2haml (>= 1.0.1)
|
114
|
-
railties (>= 4.0.1)
|
115
|
-
html2haml (2.2.0)
|
116
|
-
erubis (~> 2.7.0)
|
117
|
-
haml (>= 4.0, < 6)
|
118
|
-
nokogiri (>= 1.6.0)
|
119
|
-
ruby_parser (~> 3.5)
|
120
96
|
i18n (0.9.5)
|
121
97
|
concurrent-ruby (~> 1.0)
|
122
98
|
jquery-rails (4.3.3)
|
@@ -126,16 +102,16 @@ GEM
|
|
126
102
|
json (1.8.6)
|
127
103
|
launchy (2.4.3)
|
128
104
|
addressable (~> 2.3)
|
129
|
-
loofah (2.2.
|
105
|
+
loofah (2.2.3)
|
130
106
|
crass (~> 1.0.2)
|
131
107
|
nokogiri (>= 1.5.9)
|
132
|
-
mail (2.7.
|
108
|
+
mail (2.7.1)
|
133
109
|
mini_mime (>= 0.1.1)
|
134
|
-
method_source (0.9.
|
135
|
-
mini_mime (1.0.
|
110
|
+
method_source (0.9.2)
|
111
|
+
mini_mime (1.0.1)
|
136
112
|
mini_portile2 (2.3.0)
|
137
113
|
minitest (5.11.3)
|
138
|
-
mongo (2.6.
|
114
|
+
mongo (2.6.2)
|
139
115
|
bson (>= 4.3.0, < 5.0.0)
|
140
116
|
mongoid (5.4.0)
|
141
117
|
activemodel (~> 4.0)
|
@@ -155,31 +131,32 @@ GEM
|
|
155
131
|
mongoid (>= 3.0.3)
|
156
132
|
mongoid-tree (2.1.1)
|
157
133
|
mongoid (>= 4.0, < 8)
|
158
|
-
mongoid_orderable (
|
159
|
-
mongoid
|
160
|
-
|
134
|
+
mongoid_orderable (5.2.0)
|
135
|
+
mongoid (>= 3.0.0)
|
136
|
+
mongoid-compatibility
|
137
|
+
nokogiri (1.8.5)
|
161
138
|
mini_portile2 (~> 2.3.0)
|
162
139
|
origin (2.3.1)
|
163
|
-
pry (0.
|
140
|
+
pry (0.12.2)
|
164
141
|
coderay (~> 1.1.0)
|
165
142
|
method_source (~> 0.9.0)
|
166
143
|
pry-byebug (3.6.0)
|
167
144
|
byebug (~> 10.0)
|
168
145
|
pry (~> 0.10)
|
169
|
-
public_suffix (3.0.
|
170
|
-
rack (1.6.
|
146
|
+
public_suffix (3.0.3)
|
147
|
+
rack (1.6.11)
|
171
148
|
rack-test (0.6.3)
|
172
149
|
rack (>= 1.0)
|
173
|
-
rails (4.2.
|
174
|
-
actionmailer (= 4.2.
|
175
|
-
actionpack (= 4.2.
|
176
|
-
actionview (= 4.2.
|
177
|
-
activejob (= 4.2.
|
178
|
-
activemodel (= 4.2.
|
179
|
-
activerecord (= 4.2.
|
180
|
-
activesupport (= 4.2.
|
150
|
+
rails (4.2.11)
|
151
|
+
actionmailer (= 4.2.11)
|
152
|
+
actionpack (= 4.2.11)
|
153
|
+
actionview (= 4.2.11)
|
154
|
+
activejob (= 4.2.11)
|
155
|
+
activemodel (= 4.2.11)
|
156
|
+
activerecord (= 4.2.11)
|
157
|
+
activesupport (= 4.2.11)
|
181
158
|
bundler (>= 1.3.0, < 2.0)
|
182
|
-
railties (= 4.2.
|
159
|
+
railties (= 4.2.11)
|
183
160
|
sprockets-rails
|
184
161
|
rails-deprecated_sanitizer (1.0.3)
|
185
162
|
activesupport (>= 4.2.0.alpha)
|
@@ -192,46 +169,44 @@ GEM
|
|
192
169
|
rails-i18n (4.0.9)
|
193
170
|
i18n (~> 0.7)
|
194
171
|
railties (~> 4.0)
|
195
|
-
railties (4.2.
|
196
|
-
actionpack (= 4.2.
|
197
|
-
activesupport (= 4.2.
|
172
|
+
railties (4.2.11)
|
173
|
+
actionpack (= 4.2.11)
|
174
|
+
activesupport (= 4.2.11)
|
198
175
|
rake (>= 0.8.7)
|
199
176
|
thor (>= 0.18.1, < 2.0)
|
200
|
-
rake (12.3.
|
177
|
+
rake (12.3.2)
|
201
178
|
rb-fsevent (0.10.3)
|
202
|
-
rb-inotify (0.
|
203
|
-
ffi (
|
179
|
+
rb-inotify (0.10.0)
|
180
|
+
ffi (~> 1.0)
|
204
181
|
responders (2.4.0)
|
205
182
|
actionpack (>= 4.2.0, < 5.3)
|
206
183
|
railties (>= 4.2.0, < 5.3)
|
207
|
-
rspec (3.
|
208
|
-
rspec-core (~> 3.
|
209
|
-
rspec-expectations (~> 3.
|
210
|
-
rspec-mocks (~> 3.
|
184
|
+
rspec (3.8.0)
|
185
|
+
rspec-core (~> 3.8.0)
|
186
|
+
rspec-expectations (~> 3.8.0)
|
187
|
+
rspec-mocks (~> 3.8.0)
|
211
188
|
rspec-collection_matchers (1.1.3)
|
212
189
|
rspec-expectations (>= 2.99.0.beta1)
|
213
|
-
rspec-core (3.
|
214
|
-
rspec-support (~> 3.
|
215
|
-
rspec-expectations (3.
|
190
|
+
rspec-core (3.8.0)
|
191
|
+
rspec-support (~> 3.8.0)
|
192
|
+
rspec-expectations (3.8.2)
|
216
193
|
diff-lcs (>= 1.2.0, < 2.0)
|
217
|
-
rspec-support (~> 3.
|
218
|
-
rspec-mocks (3.
|
194
|
+
rspec-support (~> 3.8.0)
|
195
|
+
rspec-mocks (3.8.0)
|
219
196
|
diff-lcs (>= 1.2.0, < 2.0)
|
220
|
-
rspec-support (~> 3.
|
221
|
-
rspec-rails (3.
|
197
|
+
rspec-support (~> 3.8.0)
|
198
|
+
rspec-rails (3.8.1)
|
222
199
|
actionpack (>= 3.0)
|
223
200
|
activesupport (>= 3.0)
|
224
201
|
railties (>= 3.0)
|
225
|
-
rspec-core (~> 3.
|
226
|
-
rspec-expectations (~> 3.
|
227
|
-
rspec-mocks (~> 3.
|
228
|
-
rspec-support (~> 3.
|
229
|
-
rspec-support (3.
|
230
|
-
ruby-progressbar (1.
|
231
|
-
|
232
|
-
|
233
|
-
rubyzip (1.2.1)
|
234
|
-
sass (3.5.7)
|
202
|
+
rspec-core (~> 3.8.0)
|
203
|
+
rspec-expectations (~> 3.8.0)
|
204
|
+
rspec-mocks (~> 3.8.0)
|
205
|
+
rspec-support (~> 3.8.0)
|
206
|
+
rspec-support (3.8.0)
|
207
|
+
ruby-progressbar (1.10.0)
|
208
|
+
rubyzip (1.2.2)
|
209
|
+
sass (3.7.3)
|
235
210
|
sass-listen (~> 4.0.0)
|
236
211
|
sass-listen (4.0.0)
|
237
212
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
@@ -242,18 +217,22 @@ GEM
|
|
242
217
|
sprockets (>= 2.8, < 4.0)
|
243
218
|
sprockets-rails (>= 2.0, < 4.0)
|
244
219
|
tilt (>= 1.1, < 3)
|
245
|
-
selenium-webdriver (3.
|
220
|
+
selenium-webdriver (3.141.0)
|
246
221
|
childprocess (~> 0.5)
|
247
|
-
rubyzip (~> 1.2)
|
248
|
-
sexp_processor (4.11.0)
|
222
|
+
rubyzip (~> 1.2, >= 1.2.2)
|
249
223
|
shoulda-matchers (3.1.2)
|
250
224
|
activesupport (>= 4.0.0)
|
251
|
-
simple_form (
|
252
|
-
actionpack (> 4
|
253
|
-
activemodel (> 4
|
254
|
-
|
225
|
+
simple_form (4.0.0)
|
226
|
+
actionpack (> 4)
|
227
|
+
activemodel (> 4)
|
228
|
+
simplecov (0.16.1)
|
229
|
+
docile (~> 1.1)
|
230
|
+
json (>= 1.8, < 3)
|
231
|
+
simplecov-html (~> 0.10.0)
|
232
|
+
simplecov-html (0.10.2)
|
233
|
+
slim (4.0.1)
|
255
234
|
temple (>= 0.7.6, < 0.9)
|
256
|
-
tilt (>=
|
235
|
+
tilt (>= 2.0.6, < 2.1)
|
257
236
|
sprockets (3.7.2)
|
258
237
|
concurrent-ruby (~> 1.0)
|
259
238
|
rack (> 1, < 3)
|
@@ -262,12 +241,12 @@ GEM
|
|
262
241
|
activesupport (>= 4.0)
|
263
242
|
sprockets (>= 3.0.0)
|
264
243
|
temple (0.8.0)
|
265
|
-
thor (0.20.
|
244
|
+
thor (0.20.3)
|
266
245
|
thread_safe (0.3.6)
|
267
|
-
tilt (2.0.
|
246
|
+
tilt (2.0.9)
|
268
247
|
tzinfo (1.2.5)
|
269
248
|
thread_safe (~> 0.1)
|
270
|
-
xpath (3.
|
249
|
+
xpath (3.2.0)
|
271
250
|
nokogiri (~> 1.8)
|
272
251
|
|
273
252
|
PLATFORMS
|
@@ -277,10 +256,9 @@ DEPENDENCIES
|
|
277
256
|
appraisal
|
278
257
|
better_errors
|
279
258
|
binding_of_caller
|
280
|
-
|
281
|
-
capybara (~> 2.3)
|
259
|
+
capybara (>= 2.3)
|
282
260
|
factory_bot_rails
|
283
|
-
faker (
|
261
|
+
faker (>= 1.4)
|
284
262
|
helena!
|
285
263
|
jquery-rails
|
286
264
|
launchy
|
@@ -288,12 +266,13 @@ DEPENDENCIES
|
|
288
266
|
pry
|
289
267
|
pry-byebug
|
290
268
|
rails (~> 4.2)
|
291
|
-
rspec-collection_matchers (
|
292
|
-
rspec-rails (
|
269
|
+
rspec-collection_matchers (>= 1)
|
270
|
+
rspec-rails (>= 3)
|
293
271
|
ruby-progressbar
|
294
272
|
selenium-webdriver
|
295
273
|
shoulda-matchers
|
296
274
|
simple_form
|
275
|
+
simplecov
|
297
276
|
|
298
277
|
BUNDLED WITH
|
299
278
|
1.16.2
|
data/gemfiles/rails_5.1.gemfile
CHANGED
@@ -3,14 +3,13 @@
|
|
3
3
|
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
gem 'mongoid', '>= 7.0'
|
6
|
-
gem 'mongoid-rspec',
|
7
|
-
gem 'rails', '5.1'
|
6
|
+
gem 'mongoid-rspec', group: %i[development test]
|
7
|
+
gem 'rails', '~> 5.1'
|
8
8
|
gem 'rake'
|
9
9
|
|
10
10
|
group :development, :test do
|
11
11
|
gem 'better_errors'
|
12
12
|
gem 'binding_of_caller'
|
13
|
-
gem 'bootstrap-sass'
|
14
13
|
gem 'jquery-rails'
|
15
14
|
gem 'launchy'
|
16
15
|
gem 'pry'
|
@@ -21,4 +20,8 @@ group :development, :test do
|
|
21
20
|
gem 'simple_form'
|
22
21
|
end
|
23
22
|
|
23
|
+
group :test do
|
24
|
+
gem 'simplecov', require: false
|
25
|
+
end
|
26
|
+
|
24
27
|
gemspec path: '../'
|
@@ -1,70 +1,60 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/mongoid-rspec/mongoid-rspec.git
|
3
|
-
revision: e324e13e075e5ec7114414c8c3ec11c0978fbcaa
|
4
|
-
specs:
|
5
|
-
mongoid-rspec (4.0.2)
|
6
|
-
activesupport (>= 3.0.0)
|
7
|
-
mongoid (>= 3.1)
|
8
|
-
mongoid-compatibility (>= 0.5.1)
|
9
|
-
rspec (~> 3.3)
|
10
|
-
|
11
1
|
PATH
|
12
2
|
remote: ..
|
13
3
|
specs:
|
14
|
-
helena (
|
15
|
-
bootstrap-sass (~> 3.2)
|
16
|
-
browser (~> 2.0)
|
17
|
-
haml-rails (~> 1.0)
|
18
|
-
jquery-rails (~> 4.0)
|
4
|
+
helena (2.0.0)
|
19
5
|
mongoid (>= 4.0)
|
20
6
|
mongoid-simple-tags (>= 0.1.3)
|
21
|
-
mongoid-tree (
|
22
|
-
mongoid_orderable (
|
7
|
+
mongoid-tree (>= 2.0)
|
8
|
+
mongoid_orderable (>= 5.2)
|
23
9
|
rails (>= 4.2)
|
24
10
|
rails-i18n (>= 4.0)
|
25
|
-
responders (
|
26
|
-
sass-rails (
|
27
|
-
simple_form (
|
28
|
-
slim (
|
11
|
+
responders (>= 2.0)
|
12
|
+
sass-rails (>= 5.0)
|
13
|
+
simple_form (>= 4)
|
14
|
+
slim (>= 3.0)
|
29
15
|
|
30
16
|
GEM
|
31
17
|
remote: https://rubygems.org/
|
32
18
|
specs:
|
33
|
-
actioncable (5.
|
34
|
-
actionpack (= 5.
|
19
|
+
actioncable (5.2.2)
|
20
|
+
actionpack (= 5.2.2)
|
35
21
|
nio4r (~> 2.0)
|
36
|
-
websocket-driver (
|
37
|
-
actionmailer (5.
|
38
|
-
actionpack (= 5.
|
39
|
-
actionview (= 5.
|
40
|
-
activejob (= 5.
|
22
|
+
websocket-driver (>= 0.6.1)
|
23
|
+
actionmailer (5.2.2)
|
24
|
+
actionpack (= 5.2.2)
|
25
|
+
actionview (= 5.2.2)
|
26
|
+
activejob (= 5.2.2)
|
41
27
|
mail (~> 2.5, >= 2.5.4)
|
42
28
|
rails-dom-testing (~> 2.0)
|
43
|
-
actionpack (5.
|
44
|
-
actionview (= 5.
|
45
|
-
activesupport (= 5.
|
29
|
+
actionpack (5.2.2)
|
30
|
+
actionview (= 5.2.2)
|
31
|
+
activesupport (= 5.2.2)
|
46
32
|
rack (~> 2.0)
|
47
|
-
rack-test (
|
33
|
+
rack-test (>= 0.6.3)
|
48
34
|
rails-dom-testing (~> 2.0)
|
49
35
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
50
|
-
actionview (5.
|
51
|
-
activesupport (= 5.
|
36
|
+
actionview (5.2.2)
|
37
|
+
activesupport (= 5.2.2)
|
52
38
|
builder (~> 3.1)
|
53
39
|
erubi (~> 1.4)
|
54
40
|
rails-dom-testing (~> 2.0)
|
55
41
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
56
|
-
activejob (5.
|
57
|
-
activesupport (= 5.
|
42
|
+
activejob (5.2.2)
|
43
|
+
activesupport (= 5.2.2)
|
58
44
|
globalid (>= 0.3.6)
|
59
|
-
activemodel (5.
|
60
|
-
activesupport (= 5.
|
61
|
-
activerecord (5.
|
62
|
-
activemodel (= 5.
|
63
|
-
activesupport (= 5.
|
64
|
-
arel (
|
65
|
-
|
45
|
+
activemodel (5.2.2)
|
46
|
+
activesupport (= 5.2.2)
|
47
|
+
activerecord (5.2.2)
|
48
|
+
activemodel (= 5.2.2)
|
49
|
+
activesupport (= 5.2.2)
|
50
|
+
arel (>= 9.0)
|
51
|
+
activestorage (5.2.2)
|
52
|
+
actionpack (= 5.2.2)
|
53
|
+
activerecord (= 5.2.2)
|
54
|
+
marcel (~> 0.3.1)
|
55
|
+
activesupport (5.2.2)
|
66
56
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
67
|
-
i18n (
|
57
|
+
i18n (>= 0.7, < 2)
|
68
58
|
minitest (~> 5.1)
|
69
59
|
tzinfo (~> 1.1)
|
70
60
|
addressable (2.5.2)
|
@@ -73,19 +63,13 @@ GEM
|
|
73
63
|
bundler
|
74
64
|
rake
|
75
65
|
thor (>= 0.14.0)
|
76
|
-
arel (
|
77
|
-
|
78
|
-
execjs
|
79
|
-
better_errors (2.4.0)
|
66
|
+
arel (9.0.0)
|
67
|
+
better_errors (2.5.0)
|
80
68
|
coderay (>= 1.0.0)
|
81
69
|
erubi (>= 1.0.0)
|
82
70
|
rack (>= 0.9.0)
|
83
71
|
binding_of_caller (0.8.0)
|
84
72
|
debug_inspector (>= 0.0.1)
|
85
|
-
bootstrap-sass (3.3.7)
|
86
|
-
autoprefixer-rails (>= 5.2.1)
|
87
|
-
sass (>= 3.3.4)
|
88
|
-
browser (2.5.3)
|
89
73
|
bson (4.3.0)
|
90
74
|
builder (3.2.3)
|
91
75
|
byebug (10.0.2)
|
@@ -99,38 +83,23 @@ GEM
|
|
99
83
|
childprocess (0.9.0)
|
100
84
|
ffi (~> 1.0, >= 1.0.11)
|
101
85
|
coderay (1.1.2)
|
102
|
-
concurrent-ruby (1.
|
86
|
+
concurrent-ruby (1.1.3)
|
103
87
|
crass (1.0.4)
|
104
88
|
debug_inspector (0.0.3)
|
105
89
|
diff-lcs (1.3)
|
90
|
+
docile (1.3.1)
|
106
91
|
erubi (1.7.1)
|
107
|
-
|
108
|
-
execjs (2.7.0)
|
109
|
-
factory_bot (4.10.0)
|
92
|
+
factory_bot (4.11.1)
|
110
93
|
activesupport (>= 3.0.0)
|
111
|
-
factory_bot_rails (4.
|
112
|
-
factory_bot (~> 4.
|
94
|
+
factory_bot_rails (4.11.1)
|
95
|
+
factory_bot (~> 4.11.1)
|
113
96
|
railties (>= 3.0.0)
|
114
97
|
faker (1.9.1)
|
115
98
|
i18n (>= 0.7)
|
116
99
|
ffi (1.9.25)
|
117
100
|
globalid (0.4.1)
|
118
101
|
activesupport (>= 4.2.0)
|
119
|
-
|
120
|
-
temple (>= 0.8.0)
|
121
|
-
tilt
|
122
|
-
haml-rails (1.0.0)
|
123
|
-
actionpack (>= 4.0.1)
|
124
|
-
activesupport (>= 4.0.1)
|
125
|
-
haml (>= 4.0.6, < 6.0)
|
126
|
-
html2haml (>= 1.0.1)
|
127
|
-
railties (>= 4.0.1)
|
128
|
-
html2haml (2.2.0)
|
129
|
-
erubis (~> 2.7.0)
|
130
|
-
haml (>= 4.0, < 6)
|
131
|
-
nokogiri (>= 1.6.0)
|
132
|
-
ruby_parser (~> 3.5)
|
133
|
-
i18n (0.9.5)
|
102
|
+
i18n (1.1.1)
|
134
103
|
concurrent-ruby (~> 1.0)
|
135
104
|
jquery-rails (4.3.3)
|
136
105
|
rails-dom-testing (>= 1, < 3)
|
@@ -139,104 +108,112 @@ GEM
|
|
139
108
|
json (1.8.6)
|
140
109
|
launchy (2.4.3)
|
141
110
|
addressable (~> 2.3)
|
142
|
-
loofah (2.2.
|
111
|
+
loofah (2.2.3)
|
143
112
|
crass (~> 1.0.2)
|
144
113
|
nokogiri (>= 1.5.9)
|
145
|
-
mail (2.7.
|
114
|
+
mail (2.7.1)
|
146
115
|
mini_mime (>= 0.1.1)
|
147
|
-
|
148
|
-
|
116
|
+
marcel (0.3.3)
|
117
|
+
mimemagic (~> 0.3.2)
|
118
|
+
method_source (0.9.2)
|
119
|
+
mimemagic (0.3.2)
|
120
|
+
mini_mime (1.0.1)
|
149
121
|
mini_portile2 (2.3.0)
|
150
122
|
minitest (5.11.3)
|
151
|
-
mongo (2.6.
|
123
|
+
mongo (2.6.2)
|
152
124
|
bson (>= 4.3.0, < 5.0.0)
|
153
|
-
mongoid (7.0.
|
125
|
+
mongoid (7.0.2)
|
154
126
|
activemodel (>= 5.1, < 6.0.0)
|
155
127
|
mongo (>= 2.5.1, < 3.0.0)
|
156
128
|
mongoid-compatibility (0.5.1)
|
157
129
|
activesupport
|
158
130
|
mongoid (>= 2.0)
|
131
|
+
mongoid-rspec (4.0.1)
|
132
|
+
activesupport (>= 3.0.0)
|
133
|
+
mongoid (>= 3.1)
|
134
|
+
mongoid-compatibility (>= 0.5.1)
|
135
|
+
rspec (~> 3.3)
|
159
136
|
mongoid-simple-tags (0.1.3)
|
160
137
|
json (~> 1.8)
|
161
138
|
mongoid (>= 3.0.3)
|
162
139
|
mongoid-tree (2.1.1)
|
163
140
|
mongoid (>= 4.0, < 8)
|
164
|
-
mongoid_orderable (
|
165
|
-
mongoid
|
141
|
+
mongoid_orderable (5.2.0)
|
142
|
+
mongoid (>= 3.0.0)
|
143
|
+
mongoid-compatibility
|
166
144
|
nio4r (2.3.1)
|
167
|
-
nokogiri (1.8.
|
145
|
+
nokogiri (1.8.5)
|
168
146
|
mini_portile2 (~> 2.3.0)
|
169
|
-
pry (0.
|
147
|
+
pry (0.12.2)
|
170
148
|
coderay (~> 1.1.0)
|
171
149
|
method_source (~> 0.9.0)
|
172
150
|
pry-byebug (3.6.0)
|
173
151
|
byebug (~> 10.0)
|
174
152
|
pry (~> 0.10)
|
175
|
-
public_suffix (3.0.
|
176
|
-
rack (2.0.
|
177
|
-
rack-test (
|
178
|
-
rack (>= 1.0)
|
179
|
-
rails (5.
|
180
|
-
actioncable (= 5.
|
181
|
-
actionmailer (= 5.
|
182
|
-
actionpack (= 5.
|
183
|
-
actionview (= 5.
|
184
|
-
activejob (= 5.
|
185
|
-
activemodel (= 5.
|
186
|
-
activerecord (= 5.
|
187
|
-
|
188
|
-
|
189
|
-
|
153
|
+
public_suffix (3.0.3)
|
154
|
+
rack (2.0.6)
|
155
|
+
rack-test (1.1.0)
|
156
|
+
rack (>= 1.0, < 3)
|
157
|
+
rails (5.2.2)
|
158
|
+
actioncable (= 5.2.2)
|
159
|
+
actionmailer (= 5.2.2)
|
160
|
+
actionpack (= 5.2.2)
|
161
|
+
actionview (= 5.2.2)
|
162
|
+
activejob (= 5.2.2)
|
163
|
+
activemodel (= 5.2.2)
|
164
|
+
activerecord (= 5.2.2)
|
165
|
+
activestorage (= 5.2.2)
|
166
|
+
activesupport (= 5.2.2)
|
167
|
+
bundler (>= 1.3.0)
|
168
|
+
railties (= 5.2.2)
|
190
169
|
sprockets-rails (>= 2.0.0)
|
191
170
|
rails-dom-testing (2.0.3)
|
192
171
|
activesupport (>= 4.2.0)
|
193
172
|
nokogiri (>= 1.6)
|
194
173
|
rails-html-sanitizer (1.0.4)
|
195
174
|
loofah (~> 2.2, >= 2.2.2)
|
196
|
-
rails-i18n (5.1.
|
175
|
+
rails-i18n (5.1.2)
|
197
176
|
i18n (>= 0.7, < 2)
|
198
177
|
railties (>= 5.0, < 6)
|
199
|
-
railties (5.
|
200
|
-
actionpack (= 5.
|
201
|
-
activesupport (= 5.
|
178
|
+
railties (5.2.2)
|
179
|
+
actionpack (= 5.2.2)
|
180
|
+
activesupport (= 5.2.2)
|
202
181
|
method_source
|
203
182
|
rake (>= 0.8.7)
|
204
|
-
thor (>= 0.
|
205
|
-
rake (12.3.
|
183
|
+
thor (>= 0.19.0, < 2.0)
|
184
|
+
rake (12.3.2)
|
206
185
|
rb-fsevent (0.10.3)
|
207
|
-
rb-inotify (0.
|
208
|
-
ffi (
|
186
|
+
rb-inotify (0.10.0)
|
187
|
+
ffi (~> 1.0)
|
209
188
|
responders (2.4.0)
|
210
189
|
actionpack (>= 4.2.0, < 5.3)
|
211
190
|
railties (>= 4.2.0, < 5.3)
|
212
|
-
rspec (3.
|
213
|
-
rspec-core (~> 3.
|
214
|
-
rspec-expectations (~> 3.
|
215
|
-
rspec-mocks (~> 3.
|
191
|
+
rspec (3.8.0)
|
192
|
+
rspec-core (~> 3.8.0)
|
193
|
+
rspec-expectations (~> 3.8.0)
|
194
|
+
rspec-mocks (~> 3.8.0)
|
216
195
|
rspec-collection_matchers (1.1.3)
|
217
196
|
rspec-expectations (>= 2.99.0.beta1)
|
218
|
-
rspec-core (3.
|
219
|
-
rspec-support (~> 3.
|
220
|
-
rspec-expectations (3.
|
197
|
+
rspec-core (3.8.0)
|
198
|
+
rspec-support (~> 3.8.0)
|
199
|
+
rspec-expectations (3.8.2)
|
221
200
|
diff-lcs (>= 1.2.0, < 2.0)
|
222
|
-
rspec-support (~> 3.
|
223
|
-
rspec-mocks (3.
|
201
|
+
rspec-support (~> 3.8.0)
|
202
|
+
rspec-mocks (3.8.0)
|
224
203
|
diff-lcs (>= 1.2.0, < 2.0)
|
225
|
-
rspec-support (~> 3.
|
226
|
-
rspec-rails (3.
|
204
|
+
rspec-support (~> 3.8.0)
|
205
|
+
rspec-rails (3.8.1)
|
227
206
|
actionpack (>= 3.0)
|
228
207
|
activesupport (>= 3.0)
|
229
208
|
railties (>= 3.0)
|
230
|
-
rspec-core (~> 3.
|
231
|
-
rspec-expectations (~> 3.
|
232
|
-
rspec-mocks (~> 3.
|
233
|
-
rspec-support (~> 3.
|
234
|
-
rspec-support (3.
|
235
|
-
ruby-progressbar (1.
|
236
|
-
|
237
|
-
|
238
|
-
rubyzip (1.2.1)
|
239
|
-
sass (3.5.7)
|
209
|
+
rspec-core (~> 3.8.0)
|
210
|
+
rspec-expectations (~> 3.8.0)
|
211
|
+
rspec-mocks (~> 3.8.0)
|
212
|
+
rspec-support (~> 3.8.0)
|
213
|
+
rspec-support (3.8.0)
|
214
|
+
ruby-progressbar (1.10.0)
|
215
|
+
rubyzip (1.2.2)
|
216
|
+
sass (3.7.3)
|
240
217
|
sass-listen (~> 4.0.0)
|
241
218
|
sass-listen (4.0.0)
|
242
219
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
@@ -247,18 +224,22 @@ GEM
|
|
247
224
|
sprockets (>= 2.8, < 4.0)
|
248
225
|
sprockets-rails (>= 2.0, < 4.0)
|
249
226
|
tilt (>= 1.1, < 3)
|
250
|
-
selenium-webdriver (3.
|
227
|
+
selenium-webdriver (3.141.0)
|
251
228
|
childprocess (~> 0.5)
|
252
|
-
rubyzip (~> 1.2)
|
253
|
-
sexp_processor (4.11.0)
|
229
|
+
rubyzip (~> 1.2, >= 1.2.2)
|
254
230
|
shoulda-matchers (3.1.2)
|
255
231
|
activesupport (>= 4.0.0)
|
256
|
-
simple_form (
|
257
|
-
actionpack (
|
258
|
-
activemodel (
|
259
|
-
|
232
|
+
simple_form (4.0.1)
|
233
|
+
actionpack (>= 5.0)
|
234
|
+
activemodel (>= 5.0)
|
235
|
+
simplecov (0.16.1)
|
236
|
+
docile (~> 1.1)
|
237
|
+
json (>= 1.8, < 3)
|
238
|
+
simplecov-html (~> 0.10.0)
|
239
|
+
simplecov-html (0.10.2)
|
240
|
+
slim (4.0.1)
|
260
241
|
temple (>= 0.7.6, < 0.9)
|
261
|
-
tilt (>=
|
242
|
+
tilt (>= 2.0.6, < 2.1)
|
262
243
|
sprockets (3.7.2)
|
263
244
|
concurrent-ruby (~> 1.0)
|
264
245
|
rack (> 1, < 3)
|
@@ -267,15 +248,15 @@ GEM
|
|
267
248
|
activesupport (>= 4.0)
|
268
249
|
sprockets (>= 3.0.0)
|
269
250
|
temple (0.8.0)
|
270
|
-
thor (0.20.
|
251
|
+
thor (0.20.3)
|
271
252
|
thread_safe (0.3.6)
|
272
|
-
tilt (2.0.
|
253
|
+
tilt (2.0.9)
|
273
254
|
tzinfo (1.2.5)
|
274
255
|
thread_safe (~> 0.1)
|
275
|
-
websocket-driver (0.
|
256
|
+
websocket-driver (0.7.0)
|
276
257
|
websocket-extensions (>= 0.1.0)
|
277
258
|
websocket-extensions (0.1.3)
|
278
|
-
xpath (3.
|
259
|
+
xpath (3.2.0)
|
279
260
|
nokogiri (~> 1.8)
|
280
261
|
|
281
262
|
PLATFORMS
|
@@ -285,25 +266,25 @@ DEPENDENCIES
|
|
285
266
|
appraisal
|
286
267
|
better_errors
|
287
268
|
binding_of_caller
|
288
|
-
|
289
|
-
capybara (~> 2.3)
|
269
|
+
capybara (>= 2.3)
|
290
270
|
factory_bot_rails
|
291
|
-
faker (
|
271
|
+
faker (>= 1.4)
|
292
272
|
helena!
|
293
273
|
jquery-rails
|
294
274
|
launchy
|
295
275
|
mongoid (>= 7.0)
|
296
|
-
mongoid-rspec
|
276
|
+
mongoid-rspec
|
297
277
|
pry
|
298
278
|
pry-byebug
|
299
|
-
rails (
|
279
|
+
rails (~> 5.1)
|
300
280
|
rake
|
301
|
-
rspec-collection_matchers (
|
302
|
-
rspec-rails (
|
281
|
+
rspec-collection_matchers (>= 1)
|
282
|
+
rspec-rails (>= 3)
|
303
283
|
ruby-progressbar
|
304
284
|
selenium-webdriver
|
305
285
|
shoulda-matchers
|
306
286
|
simple_form
|
287
|
+
simplecov
|
307
288
|
|
308
289
|
BUNDLED WITH
|
309
290
|
1.16.2
|