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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 953e4f6e08a4cf90ff46250765c04b248037c01fb08bf330b9eaef401e20fa5c
|
4
|
+
data.tar.gz: aeaad7c34b0e58da989102fa096ad930402512b6a28a77c02c690aa53e96aeb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d89d0bc4eb18dd6b4c62d2499fdd315c3b708de4546ad5cadc274547a41f5eec241e338e431689b21c9bc1ebc581f1255fde82dc6e7d232dc66de4030fdee92
|
7
|
+
data.tar.gz: c3afdbe42aae6b9bab9663994ac62f55c7a0f103d1c942e10720ebf77c9e58339261fea912367cbcbc71c20b20efa93f85f8f7106c39423dfd748376d93c9f1f
|
data/.rubocop.yml
CHANGED
@@ -1,13 +1,9 @@
|
|
1
1
|
AllCops:
|
2
|
-
Include:
|
3
|
-
- '**/Rakefile'
|
4
|
-
- '**/config.ru'
|
5
|
-
- '**/Gemfile'
|
6
|
-
- '**/Appraisals'
|
7
2
|
Exclude:
|
3
|
+
- 'db/**/*'
|
4
|
+
- 'config/**/*'
|
5
|
+
- 'script/**/*'
|
8
6
|
- bin/**
|
9
|
-
- spec/**/**
|
10
|
-
- helena.gemspec
|
11
7
|
- spec/dummy/config/initializers/secret_token.rb
|
12
8
|
Documentation:
|
13
9
|
Enabled: false
|
@@ -18,3 +14,12 @@ AbcSize:
|
|
18
14
|
Enabled: false
|
19
15
|
FrozenStringLiteralComment:
|
20
16
|
Enabled: false
|
17
|
+
Metrics/BlockLength:
|
18
|
+
Exclude:
|
19
|
+
- helena.gemspec
|
20
|
+
ExcludedMethods:
|
21
|
+
- describe
|
22
|
+
- context
|
23
|
+
- scenario
|
24
|
+
- it
|
25
|
+
- feature
|
data/.travis.yml
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
env:
|
2
|
+
global:
|
3
|
+
- CC_TEST_REPORTER_ID=3914174f01c669419f4342558d64de49c6b3065a46b2a47048694b64b4e699cd
|
1
4
|
language: ruby
|
2
5
|
rvm:
|
3
6
|
- 2.3.1
|
@@ -11,3 +14,11 @@ services:
|
|
11
14
|
- mongodb
|
12
15
|
|
13
16
|
sudo: false
|
17
|
+
|
18
|
+
before_script:
|
19
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
20
|
+
- chmod +x ./cc-test-reporter
|
21
|
+
- ./cc-test-reporter before-build
|
22
|
+
|
23
|
+
after_script:
|
24
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
data/Gemfile
CHANGED
@@ -14,14 +14,17 @@ gemspec
|
|
14
14
|
group :development, :test do
|
15
15
|
gem 'better_errors'
|
16
16
|
gem 'binding_of_caller'
|
17
|
-
gem 'bootstrap-sass'
|
18
17
|
gem 'jquery-rails'
|
19
18
|
gem 'launchy'
|
20
|
-
gem 'mongoid-rspec'
|
19
|
+
gem 'mongoid-rspec'
|
21
20
|
gem 'pry'
|
22
21
|
gem 'pry-byebug'
|
23
|
-
gem 'rubocop-
|
22
|
+
gem 'rubocop-rails_config'
|
24
23
|
gem 'selenium-webdriver'
|
25
24
|
gem 'shoulda-matchers'
|
26
25
|
gem 'simple_form'
|
27
26
|
end
|
27
|
+
|
28
|
+
group :test do
|
29
|
+
gem 'simplecov', require: false
|
30
|
+
end
|
data/Gemfile.lock
CHANGED
@@ -1,69 +1,60 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/mongoid-rspec/mongoid-rspec
|
3
|
-
revision: f392d24abc6853895bd959b4916cd82a1b12f6f4
|
4
|
-
specs:
|
5
|
-
mongoid-rspec (4.0.0.pre.alpha1)
|
6
|
-
activesupport (>= 4.0.0)
|
7
|
-
mongoid (~> 6.0)
|
8
|
-
rspec (~> 3.3)
|
9
|
-
|
10
1
|
PATH
|
11
2
|
remote: .
|
12
3
|
specs:
|
13
|
-
helena (
|
14
|
-
bootstrap-sass (~> 3.2)
|
15
|
-
browser (~> 2.0)
|
16
|
-
haml-rails (~> 1.0)
|
17
|
-
jquery-rails (~> 4.0)
|
4
|
+
helena (2.0.0)
|
18
5
|
mongoid (>= 4.0)
|
19
6
|
mongoid-simple-tags (>= 0.1.3)
|
20
|
-
mongoid-tree (
|
21
|
-
mongoid_orderable (
|
7
|
+
mongoid-tree (>= 2.0)
|
8
|
+
mongoid_orderable (>= 5.2)
|
22
9
|
rails (>= 4.2)
|
23
10
|
rails-i18n (>= 4.0)
|
24
|
-
responders (
|
25
|
-
sass-rails (
|
26
|
-
simple_form (
|
27
|
-
slim (
|
11
|
+
responders (>= 2.0)
|
12
|
+
sass-rails (>= 5.0)
|
13
|
+
simple_form (>= 4)
|
14
|
+
slim (>= 3.0)
|
28
15
|
|
29
16
|
GEM
|
30
17
|
remote: https://rubygems.org/
|
31
18
|
specs:
|
32
|
-
actioncable (5.
|
33
|
-
actionpack (= 5.
|
19
|
+
actioncable (5.2.2)
|
20
|
+
actionpack (= 5.2.2)
|
34
21
|
nio4r (~> 2.0)
|
35
|
-
websocket-driver (
|
36
|
-
actionmailer (5.
|
37
|
-
actionpack (= 5.
|
38
|
-
actionview (= 5.
|
39
|
-
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)
|
40
27
|
mail (~> 2.5, >= 2.5.4)
|
41
28
|
rails-dom-testing (~> 2.0)
|
42
|
-
actionpack (5.
|
43
|
-
actionview (= 5.
|
44
|
-
activesupport (= 5.
|
29
|
+
actionpack (5.2.2)
|
30
|
+
actionview (= 5.2.2)
|
31
|
+
activesupport (= 5.2.2)
|
45
32
|
rack (~> 2.0)
|
46
33
|
rack-test (>= 0.6.3)
|
47
34
|
rails-dom-testing (~> 2.0)
|
48
35
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
49
|
-
actionview (5.
|
50
|
-
activesupport (= 5.
|
36
|
+
actionview (5.2.2)
|
37
|
+
activesupport (= 5.2.2)
|
51
38
|
builder (~> 3.1)
|
52
39
|
erubi (~> 1.4)
|
53
40
|
rails-dom-testing (~> 2.0)
|
54
41
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
55
|
-
activejob (5.
|
56
|
-
activesupport (= 5.
|
42
|
+
activejob (5.2.2)
|
43
|
+
activesupport (= 5.2.2)
|
57
44
|
globalid (>= 0.3.6)
|
58
|
-
activemodel (5.
|
59
|
-
activesupport (= 5.
|
60
|
-
activerecord (5.
|
61
|
-
activemodel (= 5.
|
62
|
-
activesupport (= 5.
|
63
|
-
arel (
|
64
|
-
|
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)
|
65
56
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
66
|
-
i18n (
|
57
|
+
i18n (>= 0.7, < 2)
|
67
58
|
minitest (~> 5.1)
|
68
59
|
tzinfo (~> 1.1)
|
69
60
|
addressable (2.5.2)
|
@@ -72,206 +63,202 @@ GEM
|
|
72
63
|
bundler
|
73
64
|
rake
|
74
65
|
thor (>= 0.14.0)
|
75
|
-
arel (
|
76
|
-
ast (2.
|
77
|
-
|
78
|
-
execjs
|
79
|
-
better_errors (2.4.0)
|
66
|
+
arel (9.0.0)
|
67
|
+
ast (2.4.0)
|
68
|
+
better_errors (2.5.0)
|
80
69
|
coderay (>= 1.0.0)
|
81
70
|
erubi (>= 1.0.0)
|
82
71
|
rack (>= 0.9.0)
|
83
|
-
binding_of_caller (0.
|
72
|
+
binding_of_caller (0.8.0)
|
84
73
|
debug_inspector (>= 0.0.1)
|
85
|
-
|
86
|
-
autoprefixer-rails (>= 5.2.1)
|
87
|
-
sass (>= 3.3.4)
|
88
|
-
browser (2.5.2)
|
89
|
-
bson (4.2.2)
|
74
|
+
bson (4.3.0)
|
90
75
|
builder (3.2.3)
|
91
|
-
byebug (
|
92
|
-
capybara (2.
|
76
|
+
byebug (10.0.2)
|
77
|
+
capybara (2.18.0)
|
93
78
|
addressable
|
94
79
|
mini_mime (>= 0.1.3)
|
95
80
|
nokogiri (>= 1.3.3)
|
96
81
|
rack (>= 1.0.0)
|
97
82
|
rack-test (>= 0.5.4)
|
98
|
-
xpath (
|
99
|
-
childprocess (0.
|
83
|
+
xpath (>= 2.0, < 4.0)
|
84
|
+
childprocess (0.9.0)
|
100
85
|
ffi (~> 1.0, >= 1.0.11)
|
101
86
|
coderay (1.1.2)
|
102
|
-
concurrent-ruby (1.
|
103
|
-
crass (1.0.
|
87
|
+
concurrent-ruby (1.1.3)
|
88
|
+
crass (1.0.4)
|
104
89
|
debug_inspector (0.0.3)
|
105
90
|
diff-lcs (1.3)
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
factory_bot (4.8.2)
|
91
|
+
docile (1.3.1)
|
92
|
+
erubi (1.7.1)
|
93
|
+
factory_bot (4.11.1)
|
110
94
|
activesupport (>= 3.0.0)
|
111
|
-
factory_bot_rails (4.
|
112
|
-
factory_bot (~> 4.
|
95
|
+
factory_bot_rails (4.11.1)
|
96
|
+
factory_bot (~> 4.11.1)
|
113
97
|
railties (>= 3.0.0)
|
114
|
-
faker (1.
|
115
|
-
i18n (
|
116
|
-
ffi (1.9.
|
98
|
+
faker (1.9.1)
|
99
|
+
i18n (>= 0.7)
|
100
|
+
ffi (1.9.25)
|
117
101
|
globalid (0.4.1)
|
118
102
|
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.1)
|
103
|
+
i18n (1.1.1)
|
134
104
|
concurrent-ruby (~> 1.0)
|
135
|
-
|
105
|
+
jaro_winkler (1.5.1)
|
106
|
+
jquery-rails (4.3.3)
|
136
107
|
rails-dom-testing (>= 1, < 3)
|
137
108
|
railties (>= 4.2.0)
|
138
109
|
thor (>= 0.14, < 2.0)
|
139
110
|
json (1.8.6)
|
140
111
|
launchy (2.4.3)
|
141
112
|
addressable (~> 2.3)
|
142
|
-
loofah (2.
|
113
|
+
loofah (2.2.3)
|
143
114
|
crass (~> 1.0.2)
|
144
115
|
nokogiri (>= 1.5.9)
|
145
|
-
mail (2.7.
|
116
|
+
mail (2.7.1)
|
146
117
|
mini_mime (>= 0.1.1)
|
147
|
-
|
148
|
-
|
118
|
+
marcel (0.3.3)
|
119
|
+
mimemagic (~> 0.3.2)
|
120
|
+
method_source (0.9.2)
|
121
|
+
mimemagic (0.3.3)
|
122
|
+
mini_mime (1.0.1)
|
149
123
|
mini_portile2 (2.3.0)
|
150
|
-
minitest (5.
|
151
|
-
mongo (2.
|
152
|
-
bson (>= 4.
|
153
|
-
mongoid (
|
154
|
-
activemodel (
|
155
|
-
mongo (>= 2.
|
124
|
+
minitest (5.11.3)
|
125
|
+
mongo (2.6.2)
|
126
|
+
bson (>= 4.3.0, < 5.0.0)
|
127
|
+
mongoid (7.0.2)
|
128
|
+
activemodel (>= 5.1, < 6.0.0)
|
129
|
+
mongo (>= 2.5.1, < 3.0.0)
|
130
|
+
mongoid-compatibility (0.5.1)
|
131
|
+
activesupport
|
132
|
+
mongoid (>= 2.0)
|
133
|
+
mongoid-rspec (4.0.1)
|
134
|
+
activesupport (>= 3.0.0)
|
135
|
+
mongoid (>= 3.1)
|
136
|
+
mongoid-compatibility (>= 0.5.1)
|
137
|
+
rspec (~> 3.3)
|
156
138
|
mongoid-simple-tags (0.1.3)
|
157
139
|
json (~> 1.8)
|
158
140
|
mongoid (>= 3.0.3)
|
159
|
-
mongoid-tree (2.1.
|
160
|
-
mongoid (>= 4.0, <
|
161
|
-
mongoid_orderable (
|
162
|
-
mongoid
|
163
|
-
|
164
|
-
|
141
|
+
mongoid-tree (2.1.1)
|
142
|
+
mongoid (>= 4.0, < 8)
|
143
|
+
mongoid_orderable (5.2.0)
|
144
|
+
mongoid (>= 3.0.0)
|
145
|
+
mongoid-compatibility
|
146
|
+
nio4r (2.3.1)
|
147
|
+
nokogiri (1.8.5)
|
165
148
|
mini_portile2 (~> 2.3.0)
|
166
|
-
parallel (1.12.
|
167
|
-
parser (2.
|
168
|
-
ast (~> 2.
|
169
|
-
powerpack (0.1.
|
170
|
-
pry (0.
|
149
|
+
parallel (1.12.1)
|
150
|
+
parser (2.5.3.0)
|
151
|
+
ast (~> 2.4.0)
|
152
|
+
powerpack (0.1.2)
|
153
|
+
pry (0.12.2)
|
171
154
|
coderay (~> 1.1.0)
|
172
155
|
method_source (~> 0.9.0)
|
173
|
-
pry-byebug (3.
|
174
|
-
byebug (~>
|
156
|
+
pry-byebug (3.6.0)
|
157
|
+
byebug (~> 10.0)
|
175
158
|
pry (~> 0.10)
|
176
|
-
public_suffix (3.0.
|
177
|
-
rack (2.0.
|
178
|
-
rack-test (
|
159
|
+
public_suffix (3.0.3)
|
160
|
+
rack (2.0.6)
|
161
|
+
rack-test (1.1.0)
|
179
162
|
rack (>= 1.0, < 3)
|
180
|
-
rails (5.
|
181
|
-
actioncable (= 5.
|
182
|
-
actionmailer (= 5.
|
183
|
-
actionpack (= 5.
|
184
|
-
actionview (= 5.
|
185
|
-
activejob (= 5.
|
186
|
-
activemodel (= 5.
|
187
|
-
activerecord (= 5.
|
188
|
-
|
163
|
+
rails (5.2.2)
|
164
|
+
actioncable (= 5.2.2)
|
165
|
+
actionmailer (= 5.2.2)
|
166
|
+
actionpack (= 5.2.2)
|
167
|
+
actionview (= 5.2.2)
|
168
|
+
activejob (= 5.2.2)
|
169
|
+
activemodel (= 5.2.2)
|
170
|
+
activerecord (= 5.2.2)
|
171
|
+
activestorage (= 5.2.2)
|
172
|
+
activesupport (= 5.2.2)
|
189
173
|
bundler (>= 1.3.0)
|
190
|
-
railties (= 5.
|
174
|
+
railties (= 5.2.2)
|
191
175
|
sprockets-rails (>= 2.0.0)
|
192
176
|
rails-dom-testing (2.0.3)
|
193
177
|
activesupport (>= 4.2.0)
|
194
178
|
nokogiri (>= 1.6)
|
195
|
-
rails-html-sanitizer (1.0.
|
196
|
-
loofah (~> 2.
|
197
|
-
rails-i18n (5.
|
198
|
-
i18n (
|
199
|
-
railties (
|
200
|
-
railties (5.
|
201
|
-
actionpack (= 5.
|
202
|
-
activesupport (= 5.
|
179
|
+
rails-html-sanitizer (1.0.4)
|
180
|
+
loofah (~> 2.2, >= 2.2.2)
|
181
|
+
rails-i18n (5.1.2)
|
182
|
+
i18n (>= 0.7, < 2)
|
183
|
+
railties (>= 5.0, < 6)
|
184
|
+
railties (5.2.2)
|
185
|
+
actionpack (= 5.2.2)
|
186
|
+
activesupport (= 5.2.2)
|
203
187
|
method_source
|
204
188
|
rake (>= 0.8.7)
|
205
|
-
thor (>= 0.
|
206
|
-
rainbow (
|
207
|
-
|
208
|
-
|
209
|
-
rb-
|
210
|
-
|
211
|
-
ffi (>= 0.5.0, < 2)
|
189
|
+
thor (>= 0.19.0, < 2.0)
|
190
|
+
rainbow (3.0.0)
|
191
|
+
rake (12.3.2)
|
192
|
+
rb-fsevent (0.10.3)
|
193
|
+
rb-inotify (0.10.0)
|
194
|
+
ffi (~> 1.0)
|
212
195
|
responders (2.4.0)
|
213
196
|
actionpack (>= 4.2.0, < 5.3)
|
214
197
|
railties (>= 4.2.0, < 5.3)
|
215
|
-
rspec (3.
|
216
|
-
rspec-core (~> 3.
|
217
|
-
rspec-expectations (~> 3.
|
218
|
-
rspec-mocks (~> 3.
|
198
|
+
rspec (3.8.0)
|
199
|
+
rspec-core (~> 3.8.0)
|
200
|
+
rspec-expectations (~> 3.8.0)
|
201
|
+
rspec-mocks (~> 3.8.0)
|
219
202
|
rspec-collection_matchers (1.1.3)
|
220
203
|
rspec-expectations (>= 2.99.0.beta1)
|
221
|
-
rspec-core (3.
|
222
|
-
rspec-support (~> 3.
|
223
|
-
rspec-expectations (3.
|
204
|
+
rspec-core (3.8.0)
|
205
|
+
rspec-support (~> 3.8.0)
|
206
|
+
rspec-expectations (3.8.2)
|
224
207
|
diff-lcs (>= 1.2.0, < 2.0)
|
225
|
-
rspec-support (~> 3.
|
226
|
-
rspec-mocks (3.
|
208
|
+
rspec-support (~> 3.8.0)
|
209
|
+
rspec-mocks (3.8.0)
|
227
210
|
diff-lcs (>= 1.2.0, < 2.0)
|
228
|
-
rspec-support (~> 3.
|
229
|
-
rspec-rails (3.
|
211
|
+
rspec-support (~> 3.8.0)
|
212
|
+
rspec-rails (3.8.1)
|
230
213
|
actionpack (>= 3.0)
|
231
214
|
activesupport (>= 3.0)
|
232
215
|
railties (>= 3.0)
|
233
|
-
rspec-core (~> 3.
|
234
|
-
rspec-expectations (~> 3.
|
235
|
-
rspec-mocks (~> 3.
|
236
|
-
rspec-support (~> 3.
|
237
|
-
rspec-support (3.
|
238
|
-
rubocop (0.
|
216
|
+
rspec-core (~> 3.8.0)
|
217
|
+
rspec-expectations (~> 3.8.0)
|
218
|
+
rspec-mocks (~> 3.8.0)
|
219
|
+
rspec-support (~> 3.8.0)
|
220
|
+
rspec-support (3.8.0)
|
221
|
+
rubocop (0.60.0)
|
222
|
+
jaro_winkler (~> 1.5.1)
|
239
223
|
parallel (~> 1.10)
|
240
|
-
parser (>= 2.
|
224
|
+
parser (>= 2.5, != 2.5.1.1)
|
241
225
|
powerpack (~> 0.1)
|
242
|
-
rainbow (>= 2.2.2, <
|
226
|
+
rainbow (>= 2.2.2, < 4.0)
|
243
227
|
ruby-progressbar (~> 1.7)
|
244
|
-
unicode-display_width (~> 1.
|
245
|
-
rubocop-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
sass (3.5.3)
|
228
|
+
unicode-display_width (~> 1.4.0)
|
229
|
+
rubocop-rails_config (0.2.6)
|
230
|
+
railties (>= 3.0)
|
231
|
+
rubocop (~> 0.56)
|
232
|
+
ruby-progressbar (1.10.0)
|
233
|
+
rubyzip (1.2.2)
|
234
|
+
sass (3.7.3)
|
252
235
|
sass-listen (~> 4.0.0)
|
253
236
|
sass-listen (4.0.0)
|
254
237
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
255
238
|
rb-inotify (~> 0.9, >= 0.9.7)
|
256
|
-
sass-rails (5.0.
|
239
|
+
sass-rails (5.0.7)
|
257
240
|
railties (>= 4.0.0, < 6)
|
258
241
|
sass (~> 3.1)
|
259
242
|
sprockets (>= 2.8, < 4.0)
|
260
243
|
sprockets-rails (>= 2.0, < 4.0)
|
261
244
|
tilt (>= 1.1, < 3)
|
262
|
-
selenium-webdriver (3.
|
245
|
+
selenium-webdriver (3.141.0)
|
263
246
|
childprocess (~> 0.5)
|
264
|
-
rubyzip (~> 1.
|
265
|
-
sexp_processor (4.10.0)
|
247
|
+
rubyzip (~> 1.2, >= 1.2.2)
|
266
248
|
shoulda-matchers (3.1.2)
|
267
249
|
activesupport (>= 4.0.0)
|
268
|
-
simple_form (
|
269
|
-
actionpack (
|
270
|
-
activemodel (
|
271
|
-
|
250
|
+
simple_form (4.0.1)
|
251
|
+
actionpack (>= 5.0)
|
252
|
+
activemodel (>= 5.0)
|
253
|
+
simplecov (0.16.1)
|
254
|
+
docile (~> 1.1)
|
255
|
+
json (>= 1.8, < 3)
|
256
|
+
simplecov-html (~> 0.10.0)
|
257
|
+
simplecov-html (0.10.2)
|
258
|
+
slim (4.0.1)
|
272
259
|
temple (>= 0.7.6, < 0.9)
|
273
|
-
tilt (>=
|
274
|
-
sprockets (3.7.
|
260
|
+
tilt (>= 2.0.6, < 2.1)
|
261
|
+
sprockets (3.7.2)
|
275
262
|
concurrent-ruby (~> 1.0)
|
276
263
|
rack (> 1, < 3)
|
277
264
|
sprockets-rails (3.2.1)
|
@@ -279,17 +266,17 @@ GEM
|
|
279
266
|
activesupport (>= 4.0)
|
280
267
|
sprockets (>= 3.0.0)
|
281
268
|
temple (0.8.0)
|
282
|
-
thor (0.20.
|
269
|
+
thor (0.20.3)
|
283
270
|
thread_safe (0.3.6)
|
284
|
-
tilt (2.0.
|
285
|
-
tzinfo (1.2.
|
271
|
+
tilt (2.0.9)
|
272
|
+
tzinfo (1.2.5)
|
286
273
|
thread_safe (~> 0.1)
|
287
|
-
unicode-display_width (1.
|
288
|
-
websocket-driver (0.
|
274
|
+
unicode-display_width (1.4.0)
|
275
|
+
websocket-driver (0.7.0)
|
289
276
|
websocket-extensions (>= 0.1.0)
|
290
|
-
websocket-extensions (0.1.
|
291
|
-
xpath (2.
|
292
|
-
nokogiri (~> 1.
|
277
|
+
websocket-extensions (0.1.3)
|
278
|
+
xpath (3.2.0)
|
279
|
+
nokogiri (~> 1.8)
|
293
280
|
|
294
281
|
PLATFORMS
|
295
282
|
ruby
|
@@ -298,22 +285,22 @@ DEPENDENCIES
|
|
298
285
|
appraisal
|
299
286
|
better_errors
|
300
287
|
binding_of_caller
|
301
|
-
|
302
|
-
capybara (~> 2.3)
|
288
|
+
capybara (>= 2.3)
|
303
289
|
factory_bot_rails
|
304
|
-
faker (
|
290
|
+
faker (>= 1.4)
|
305
291
|
helena!
|
306
292
|
jquery-rails
|
307
293
|
launchy
|
308
|
-
mongoid-rspec
|
294
|
+
mongoid-rspec
|
309
295
|
pry
|
310
296
|
pry-byebug
|
311
|
-
rspec-collection_matchers (
|
312
|
-
rspec-rails (
|
313
|
-
rubocop-
|
297
|
+
rspec-collection_matchers (>= 1)
|
298
|
+
rspec-rails (>= 3)
|
299
|
+
rubocop-rails_config
|
314
300
|
selenium-webdriver
|
315
301
|
shoulda-matchers
|
316
302
|
simple_form
|
303
|
+
simplecov
|
317
304
|
|
318
305
|
BUNDLED WITH
|
319
|
-
1.16.
|
306
|
+
1.16.2
|