qti 0.9.8 → 0.9.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/qti.rb +7 -0
- data/lib/qti/v1/models/interactions.rb +0 -1
- data/lib/qti/v1/models/interactions/numeric_interaction.rb +4 -14
- data/lib/qti/v1/models/numerics/exact_match.rb +43 -0
- data/lib/qti/v1/models/numerics/margin_error.rb +51 -0
- data/lib/qti/v1/models/numerics/precision.rb +65 -0
- data/lib/qti/v1/models/numerics/scoring_base.rb +29 -0
- data/lib/qti/v1/models/numerics/scoring_data.rb +26 -0
- data/lib/qti/v1/models/numerics/scoring_node.rb +29 -0
- data/lib/qti/v1/models/numerics/within_range.rb +36 -0
- data/lib/qti/version.rb +1 -1
- data/spec/fixtures/items_1.2/{numeric.xml → numeric_exact_match.xml} +0 -0
- data/spec/fixtures/items_1.2/numeric_margin_error.xml +58 -0
- data/spec/fixtures/items_1.2/numeric_precision.xml +58 -0
- data/spec/fixtures/items_1.2/numeric_within_range.xml +53 -0
- data/spec/gemfiles/nokogiri-1.8.gemfile.lock +35 -18
- data/spec/lib/qti/v1/models/interactions/numeric_interaction_spec.rb +92 -27
- data/spec/lib/qti/v1/models/numerics/exact_match_spec.rb +84 -0
- data/spec/lib/qti/v1/models/numerics/margin_error_spec.rb +80 -0
- data/spec/lib/qti/v1/models/numerics/precision_spec.rb +88 -0
- data/spec/lib/qti/v1/models/numerics/scoring_base_spec.rb +35 -0
- data/spec/lib/qti/v1/models/numerics/scoring_node_spec.rb +29 -0
- data/spec/lib/qti/v1/models/numerics/within_range_spec.rb +64 -0
- data/spec/spec_helper.rb +1 -0
- metadata +44 -17
- data/spec/gemfiles/nokogiri-1.6.gemfile.lock +0 -127
- data/spec/gemfiles/rails-4.2.gemfile.lock +0 -204
- data/spec/gemfiles/rails-5.0.gemfile.lock +0 -210
- data/spec/gemfiles/rails-5.1.gemfile.lock +0 -210
- data/spec/gemfiles/sanitize-4.2.gemfile.lock +0 -127
- data/spec/gemfiles/sanitize-4.5.gemfile.lock +0 -127
@@ -1,204 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../..
|
3
|
-
specs:
|
4
|
-
qti (0.9.3)
|
5
|
-
activesupport (>= 4.2.9, < 5.2)
|
6
|
-
dry-struct (~> 0.2.1)
|
7
|
-
dry-types (~> 0.12.0)
|
8
|
-
nokogiri (>= 1.6.8, < 1.9)
|
9
|
-
rubyzip (~> 1.2)
|
10
|
-
sanitize (>= 4.2.0, < 5.0)
|
11
|
-
|
12
|
-
GEM
|
13
|
-
remote: https://rubygems.org/
|
14
|
-
specs:
|
15
|
-
actionmailer (4.2.9)
|
16
|
-
actionpack (= 4.2.9)
|
17
|
-
actionview (= 4.2.9)
|
18
|
-
activejob (= 4.2.9)
|
19
|
-
mail (~> 2.5, >= 2.5.4)
|
20
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
21
|
-
actionpack (4.2.9)
|
22
|
-
actionview (= 4.2.9)
|
23
|
-
activesupport (= 4.2.9)
|
24
|
-
rack (~> 1.6)
|
25
|
-
rack-test (~> 0.6.2)
|
26
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
27
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
-
actionview (4.2.9)
|
29
|
-
activesupport (= 4.2.9)
|
30
|
-
builder (~> 3.1)
|
31
|
-
erubis (~> 2.7.0)
|
32
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
33
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
-
activejob (4.2.9)
|
35
|
-
activesupport (= 4.2.9)
|
36
|
-
globalid (>= 0.3.0)
|
37
|
-
activemodel (4.2.9)
|
38
|
-
activesupport (= 4.2.9)
|
39
|
-
builder (~> 3.1)
|
40
|
-
activerecord (4.2.9)
|
41
|
-
activemodel (= 4.2.9)
|
42
|
-
activesupport (= 4.2.9)
|
43
|
-
arel (~> 6.0)
|
44
|
-
activesupport (4.2.9)
|
45
|
-
i18n (~> 0.7)
|
46
|
-
minitest (~> 5.1)
|
47
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
48
|
-
tzinfo (~> 1.1)
|
49
|
-
arel (6.0.4)
|
50
|
-
ast (2.3.0)
|
51
|
-
builder (3.2.3)
|
52
|
-
byebug (9.1.0)
|
53
|
-
coderay (1.1.2)
|
54
|
-
concurrent-ruby (1.0.5)
|
55
|
-
crass (1.0.2)
|
56
|
-
diff-lcs (1.3)
|
57
|
-
docile (1.1.5)
|
58
|
-
dry-configurable (0.7.0)
|
59
|
-
concurrent-ruby (~> 1.0)
|
60
|
-
dry-container (0.6.0)
|
61
|
-
concurrent-ruby (~> 1.0)
|
62
|
-
dry-configurable (~> 0.1, >= 0.1.3)
|
63
|
-
dry-core (0.3.4)
|
64
|
-
concurrent-ruby (~> 1.0)
|
65
|
-
dry-equalizer (0.2.0)
|
66
|
-
dry-logic (0.4.2)
|
67
|
-
dry-container (~> 0.2, >= 0.2.6)
|
68
|
-
dry-core (~> 0.2)
|
69
|
-
dry-equalizer (~> 0.2)
|
70
|
-
dry-struct (0.2.1)
|
71
|
-
dry-configurable (~> 0.1)
|
72
|
-
dry-equalizer (~> 0.2)
|
73
|
-
dry-types (~> 0.9, >= 0.9.0)
|
74
|
-
ice_nine (~> 0.11)
|
75
|
-
dry-types (0.12.0)
|
76
|
-
concurrent-ruby (~> 1.0)
|
77
|
-
dry-configurable (~> 0.1)
|
78
|
-
dry-container (~> 0.3)
|
79
|
-
dry-core (~> 0.2, >= 0.2.1)
|
80
|
-
dry-equalizer (~> 0.2)
|
81
|
-
dry-logic (~> 0.4, >= 0.4.2)
|
82
|
-
inflecto (~> 0.0.0, >= 0.0.2)
|
83
|
-
erubis (2.7.0)
|
84
|
-
globalid (0.4.0)
|
85
|
-
activesupport (>= 4.2.0)
|
86
|
-
i18n (0.8.6)
|
87
|
-
ice_nine (0.11.2)
|
88
|
-
inflecto (0.0.2)
|
89
|
-
json (2.1.0)
|
90
|
-
loofah (2.1.1)
|
91
|
-
crass (~> 1.0.2)
|
92
|
-
nokogiri (>= 1.5.9)
|
93
|
-
mail (2.6.6)
|
94
|
-
mime-types (>= 1.16, < 4)
|
95
|
-
method_source (0.9.0)
|
96
|
-
mime-types (3.1)
|
97
|
-
mime-types-data (~> 3.2015)
|
98
|
-
mime-types-data (3.2016.0521)
|
99
|
-
mini_portile2 (2.3.0)
|
100
|
-
minitest (5.10.3)
|
101
|
-
nokogiri (1.8.1)
|
102
|
-
mini_portile2 (~> 2.3.0)
|
103
|
-
nokogumbo (1.4.13)
|
104
|
-
nokogiri
|
105
|
-
parallel (1.12.0)
|
106
|
-
parser (2.4.0.0)
|
107
|
-
ast (~> 2.2)
|
108
|
-
powerpack (0.1.1)
|
109
|
-
pry (0.11.1)
|
110
|
-
coderay (~> 1.1.0)
|
111
|
-
method_source (~> 0.9.0)
|
112
|
-
rack (1.6.8)
|
113
|
-
rack-test (0.6.3)
|
114
|
-
rack (>= 1.0)
|
115
|
-
rails (4.2.9)
|
116
|
-
actionmailer (= 4.2.9)
|
117
|
-
actionpack (= 4.2.9)
|
118
|
-
actionview (= 4.2.9)
|
119
|
-
activejob (= 4.2.9)
|
120
|
-
activemodel (= 4.2.9)
|
121
|
-
activerecord (= 4.2.9)
|
122
|
-
activesupport (= 4.2.9)
|
123
|
-
bundler (>= 1.3.0, < 2.0)
|
124
|
-
railties (= 4.2.9)
|
125
|
-
sprockets-rails
|
126
|
-
rails-deprecated_sanitizer (1.0.3)
|
127
|
-
activesupport (>= 4.2.0.alpha)
|
128
|
-
rails-dom-testing (1.0.8)
|
129
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
130
|
-
nokogiri (~> 1.6)
|
131
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
132
|
-
rails-html-sanitizer (1.0.3)
|
133
|
-
loofah (~> 2.0)
|
134
|
-
railties (4.2.9)
|
135
|
-
actionpack (= 4.2.9)
|
136
|
-
activesupport (= 4.2.9)
|
137
|
-
rake (>= 0.8.7)
|
138
|
-
thor (>= 0.18.1, < 2.0)
|
139
|
-
rainbow (2.2.2)
|
140
|
-
rake
|
141
|
-
rake (0.9.6)
|
142
|
-
rspec (3.6.0)
|
143
|
-
rspec-core (~> 3.6.0)
|
144
|
-
rspec-expectations (~> 3.6.0)
|
145
|
-
rspec-mocks (~> 3.6.0)
|
146
|
-
rspec-core (3.6.0)
|
147
|
-
rspec-support (~> 3.6.0)
|
148
|
-
rspec-expectations (3.6.0)
|
149
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
150
|
-
rspec-support (~> 3.6.0)
|
151
|
-
rspec-mocks (3.6.0)
|
152
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
153
|
-
rspec-support (~> 3.6.0)
|
154
|
-
rspec-support (3.6.0)
|
155
|
-
rubocop (0.50.0)
|
156
|
-
parallel (~> 1.10)
|
157
|
-
parser (>= 2.3.3.1, < 3.0)
|
158
|
-
powerpack (~> 0.1)
|
159
|
-
rainbow (>= 2.2.2, < 3.0)
|
160
|
-
ruby-progressbar (~> 1.7)
|
161
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
162
|
-
ruby-progressbar (1.8.3)
|
163
|
-
rubyzip (1.2.1)
|
164
|
-
sanitize (4.5.0)
|
165
|
-
crass (~> 1.0.2)
|
166
|
-
nokogiri (>= 1.4.4)
|
167
|
-
nokogumbo (~> 1.4.1)
|
168
|
-
simplecov (0.15.1)
|
169
|
-
docile (~> 1.1.0)
|
170
|
-
json (>= 1.8, < 3)
|
171
|
-
simplecov-html (~> 0.10.0)
|
172
|
-
simplecov-html (0.10.2)
|
173
|
-
sprockets (3.7.1)
|
174
|
-
concurrent-ruby (~> 1.0)
|
175
|
-
rack (> 1, < 3)
|
176
|
-
sprockets-rails (3.2.1)
|
177
|
-
actionpack (>= 4.0)
|
178
|
-
activesupport (>= 4.0)
|
179
|
-
sprockets (>= 3.0.0)
|
180
|
-
thor (0.20.0)
|
181
|
-
thread_safe (0.3.6)
|
182
|
-
tzinfo (1.2.3)
|
183
|
-
thread_safe (~> 0.1)
|
184
|
-
unicode-display_width (1.3.0)
|
185
|
-
wwtd (1.3.0)
|
186
|
-
|
187
|
-
PLATFORMS
|
188
|
-
ruby
|
189
|
-
|
190
|
-
DEPENDENCIES
|
191
|
-
bundler (~> 1.15)
|
192
|
-
byebug (~> 9.0)
|
193
|
-
pry (~> 0)
|
194
|
-
qti!
|
195
|
-
rails (~> 4.2.9)
|
196
|
-
rake (~> 0)
|
197
|
-
rspec (~> 3.6)
|
198
|
-
rspec-mocks (~> 3.6)
|
199
|
-
rubocop (~> 0.50.0)
|
200
|
-
simplecov (~> 0)
|
201
|
-
wwtd (~> 1.3)
|
202
|
-
|
203
|
-
BUNDLED WITH
|
204
|
-
1.15.4
|
@@ -1,210 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../..
|
3
|
-
specs:
|
4
|
-
qti (0.9.3)
|
5
|
-
activesupport (>= 4.2.9, < 5.2)
|
6
|
-
dry-struct (~> 0.2.1)
|
7
|
-
dry-types (~> 0.12.0)
|
8
|
-
nokogiri (>= 1.6.8, < 1.9)
|
9
|
-
rubyzip (~> 1.2)
|
10
|
-
sanitize (>= 4.2.0, < 5.0)
|
11
|
-
|
12
|
-
GEM
|
13
|
-
remote: https://rubygems.org/
|
14
|
-
specs:
|
15
|
-
actioncable (5.0.6)
|
16
|
-
actionpack (= 5.0.6)
|
17
|
-
nio4r (>= 1.2, < 3.0)
|
18
|
-
websocket-driver (~> 0.6.1)
|
19
|
-
actionmailer (5.0.6)
|
20
|
-
actionpack (= 5.0.6)
|
21
|
-
actionview (= 5.0.6)
|
22
|
-
activejob (= 5.0.6)
|
23
|
-
mail (~> 2.5, >= 2.5.4)
|
24
|
-
rails-dom-testing (~> 2.0)
|
25
|
-
actionpack (5.0.6)
|
26
|
-
actionview (= 5.0.6)
|
27
|
-
activesupport (= 5.0.6)
|
28
|
-
rack (~> 2.0)
|
29
|
-
rack-test (~> 0.6.3)
|
30
|
-
rails-dom-testing (~> 2.0)
|
31
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
32
|
-
actionview (5.0.6)
|
33
|
-
activesupport (= 5.0.6)
|
34
|
-
builder (~> 3.1)
|
35
|
-
erubis (~> 2.7.0)
|
36
|
-
rails-dom-testing (~> 2.0)
|
37
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
38
|
-
activejob (5.0.6)
|
39
|
-
activesupport (= 5.0.6)
|
40
|
-
globalid (>= 0.3.6)
|
41
|
-
activemodel (5.0.6)
|
42
|
-
activesupport (= 5.0.6)
|
43
|
-
activerecord (5.0.6)
|
44
|
-
activemodel (= 5.0.6)
|
45
|
-
activesupport (= 5.0.6)
|
46
|
-
arel (~> 7.0)
|
47
|
-
activesupport (5.0.6)
|
48
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
49
|
-
i18n (~> 0.7)
|
50
|
-
minitest (~> 5.1)
|
51
|
-
tzinfo (~> 1.1)
|
52
|
-
arel (7.1.4)
|
53
|
-
ast (2.3.0)
|
54
|
-
builder (3.2.3)
|
55
|
-
byebug (9.1.0)
|
56
|
-
coderay (1.1.2)
|
57
|
-
concurrent-ruby (1.0.5)
|
58
|
-
crass (1.0.2)
|
59
|
-
diff-lcs (1.3)
|
60
|
-
docile (1.1.5)
|
61
|
-
dry-configurable (0.7.0)
|
62
|
-
concurrent-ruby (~> 1.0)
|
63
|
-
dry-container (0.6.0)
|
64
|
-
concurrent-ruby (~> 1.0)
|
65
|
-
dry-configurable (~> 0.1, >= 0.1.3)
|
66
|
-
dry-core (0.3.4)
|
67
|
-
concurrent-ruby (~> 1.0)
|
68
|
-
dry-equalizer (0.2.0)
|
69
|
-
dry-logic (0.4.2)
|
70
|
-
dry-container (~> 0.2, >= 0.2.6)
|
71
|
-
dry-core (~> 0.2)
|
72
|
-
dry-equalizer (~> 0.2)
|
73
|
-
dry-struct (0.2.1)
|
74
|
-
dry-configurable (~> 0.1)
|
75
|
-
dry-equalizer (~> 0.2)
|
76
|
-
dry-types (~> 0.9, >= 0.9.0)
|
77
|
-
ice_nine (~> 0.11)
|
78
|
-
dry-types (0.12.0)
|
79
|
-
concurrent-ruby (~> 1.0)
|
80
|
-
dry-configurable (~> 0.1)
|
81
|
-
dry-container (~> 0.3)
|
82
|
-
dry-core (~> 0.2, >= 0.2.1)
|
83
|
-
dry-equalizer (~> 0.2)
|
84
|
-
dry-logic (~> 0.4, >= 0.4.2)
|
85
|
-
inflecto (~> 0.0.0, >= 0.0.2)
|
86
|
-
erubis (2.7.0)
|
87
|
-
globalid (0.4.0)
|
88
|
-
activesupport (>= 4.2.0)
|
89
|
-
i18n (0.8.6)
|
90
|
-
ice_nine (0.11.2)
|
91
|
-
inflecto (0.0.2)
|
92
|
-
json (2.1.0)
|
93
|
-
loofah (2.1.1)
|
94
|
-
crass (~> 1.0.2)
|
95
|
-
nokogiri (>= 1.5.9)
|
96
|
-
mail (2.6.6)
|
97
|
-
mime-types (>= 1.16, < 4)
|
98
|
-
method_source (0.9.0)
|
99
|
-
mime-types (3.1)
|
100
|
-
mime-types-data (~> 3.2015)
|
101
|
-
mime-types-data (3.2016.0521)
|
102
|
-
mini_portile2 (2.3.0)
|
103
|
-
minitest (5.10.3)
|
104
|
-
nio4r (2.1.0)
|
105
|
-
nokogiri (1.8.1)
|
106
|
-
mini_portile2 (~> 2.3.0)
|
107
|
-
nokogumbo (1.4.13)
|
108
|
-
nokogiri
|
109
|
-
parallel (1.12.0)
|
110
|
-
parser (2.4.0.0)
|
111
|
-
ast (~> 2.2)
|
112
|
-
powerpack (0.1.1)
|
113
|
-
pry (0.11.1)
|
114
|
-
coderay (~> 1.1.0)
|
115
|
-
method_source (~> 0.9.0)
|
116
|
-
rack (2.0.3)
|
117
|
-
rack-test (0.6.3)
|
118
|
-
rack (>= 1.0)
|
119
|
-
rails (5.0.6)
|
120
|
-
actioncable (= 5.0.6)
|
121
|
-
actionmailer (= 5.0.6)
|
122
|
-
actionpack (= 5.0.6)
|
123
|
-
actionview (= 5.0.6)
|
124
|
-
activejob (= 5.0.6)
|
125
|
-
activemodel (= 5.0.6)
|
126
|
-
activerecord (= 5.0.6)
|
127
|
-
activesupport (= 5.0.6)
|
128
|
-
bundler (>= 1.3.0)
|
129
|
-
railties (= 5.0.6)
|
130
|
-
sprockets-rails (>= 2.0.0)
|
131
|
-
rails-dom-testing (2.0.3)
|
132
|
-
activesupport (>= 4.2.0)
|
133
|
-
nokogiri (>= 1.6)
|
134
|
-
rails-html-sanitizer (1.0.3)
|
135
|
-
loofah (~> 2.0)
|
136
|
-
railties (5.0.6)
|
137
|
-
actionpack (= 5.0.6)
|
138
|
-
activesupport (= 5.0.6)
|
139
|
-
method_source
|
140
|
-
rake (>= 0.8.7)
|
141
|
-
thor (>= 0.18.1, < 2.0)
|
142
|
-
rainbow (2.2.2)
|
143
|
-
rake
|
144
|
-
rake (0.9.6)
|
145
|
-
rspec (3.6.0)
|
146
|
-
rspec-core (~> 3.6.0)
|
147
|
-
rspec-expectations (~> 3.6.0)
|
148
|
-
rspec-mocks (~> 3.6.0)
|
149
|
-
rspec-core (3.6.0)
|
150
|
-
rspec-support (~> 3.6.0)
|
151
|
-
rspec-expectations (3.6.0)
|
152
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
153
|
-
rspec-support (~> 3.6.0)
|
154
|
-
rspec-mocks (3.6.0)
|
155
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
156
|
-
rspec-support (~> 3.6.0)
|
157
|
-
rspec-support (3.6.0)
|
158
|
-
rubocop (0.50.0)
|
159
|
-
parallel (~> 1.10)
|
160
|
-
parser (>= 2.3.3.1, < 3.0)
|
161
|
-
powerpack (~> 0.1)
|
162
|
-
rainbow (>= 2.2.2, < 3.0)
|
163
|
-
ruby-progressbar (~> 1.7)
|
164
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
165
|
-
ruby-progressbar (1.8.3)
|
166
|
-
rubyzip (1.2.1)
|
167
|
-
sanitize (4.5.0)
|
168
|
-
crass (~> 1.0.2)
|
169
|
-
nokogiri (>= 1.4.4)
|
170
|
-
nokogumbo (~> 1.4.1)
|
171
|
-
simplecov (0.15.1)
|
172
|
-
docile (~> 1.1.0)
|
173
|
-
json (>= 1.8, < 3)
|
174
|
-
simplecov-html (~> 0.10.0)
|
175
|
-
simplecov-html (0.10.2)
|
176
|
-
sprockets (3.7.1)
|
177
|
-
concurrent-ruby (~> 1.0)
|
178
|
-
rack (> 1, < 3)
|
179
|
-
sprockets-rails (3.2.1)
|
180
|
-
actionpack (>= 4.0)
|
181
|
-
activesupport (>= 4.0)
|
182
|
-
sprockets (>= 3.0.0)
|
183
|
-
thor (0.20.0)
|
184
|
-
thread_safe (0.3.6)
|
185
|
-
tzinfo (1.2.3)
|
186
|
-
thread_safe (~> 0.1)
|
187
|
-
unicode-display_width (1.3.0)
|
188
|
-
websocket-driver (0.6.5)
|
189
|
-
websocket-extensions (>= 0.1.0)
|
190
|
-
websocket-extensions (0.1.2)
|
191
|
-
wwtd (1.3.0)
|
192
|
-
|
193
|
-
PLATFORMS
|
194
|
-
ruby
|
195
|
-
|
196
|
-
DEPENDENCIES
|
197
|
-
bundler (~> 1.15)
|
198
|
-
byebug (~> 9.0)
|
199
|
-
pry (~> 0)
|
200
|
-
qti!
|
201
|
-
rails (~> 5.0.6)
|
202
|
-
rake (~> 0)
|
203
|
-
rspec (~> 3.6)
|
204
|
-
rspec-mocks (~> 3.6)
|
205
|
-
rubocop (~> 0.50.0)
|
206
|
-
simplecov (~> 0)
|
207
|
-
wwtd (~> 1.3)
|
208
|
-
|
209
|
-
BUNDLED WITH
|
210
|
-
1.15.4
|
@@ -1,210 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../..
|
3
|
-
specs:
|
4
|
-
qti (0.9.3)
|
5
|
-
activesupport (>= 4.2.9, < 5.2)
|
6
|
-
dry-struct (~> 0.2.1)
|
7
|
-
dry-types (~> 0.12.0)
|
8
|
-
nokogiri (>= 1.6.8, < 1.9)
|
9
|
-
rubyzip (~> 1.2)
|
10
|
-
sanitize (>= 4.2.0, < 5.0)
|
11
|
-
|
12
|
-
GEM
|
13
|
-
remote: https://rubygems.org/
|
14
|
-
specs:
|
15
|
-
actioncable (5.1.4)
|
16
|
-
actionpack (= 5.1.4)
|
17
|
-
nio4r (~> 2.0)
|
18
|
-
websocket-driver (~> 0.6.1)
|
19
|
-
actionmailer (5.1.4)
|
20
|
-
actionpack (= 5.1.4)
|
21
|
-
actionview (= 5.1.4)
|
22
|
-
activejob (= 5.1.4)
|
23
|
-
mail (~> 2.5, >= 2.5.4)
|
24
|
-
rails-dom-testing (~> 2.0)
|
25
|
-
actionpack (5.1.4)
|
26
|
-
actionview (= 5.1.4)
|
27
|
-
activesupport (= 5.1.4)
|
28
|
-
rack (~> 2.0)
|
29
|
-
rack-test (>= 0.6.3)
|
30
|
-
rails-dom-testing (~> 2.0)
|
31
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
32
|
-
actionview (5.1.4)
|
33
|
-
activesupport (= 5.1.4)
|
34
|
-
builder (~> 3.1)
|
35
|
-
erubi (~> 1.4)
|
36
|
-
rails-dom-testing (~> 2.0)
|
37
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
38
|
-
activejob (5.1.4)
|
39
|
-
activesupport (= 5.1.4)
|
40
|
-
globalid (>= 0.3.6)
|
41
|
-
activemodel (5.1.4)
|
42
|
-
activesupport (= 5.1.4)
|
43
|
-
activerecord (5.1.4)
|
44
|
-
activemodel (= 5.1.4)
|
45
|
-
activesupport (= 5.1.4)
|
46
|
-
arel (~> 8.0)
|
47
|
-
activesupport (5.1.4)
|
48
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
49
|
-
i18n (~> 0.7)
|
50
|
-
minitest (~> 5.1)
|
51
|
-
tzinfo (~> 1.1)
|
52
|
-
arel (8.0.0)
|
53
|
-
ast (2.3.0)
|
54
|
-
builder (3.2.3)
|
55
|
-
byebug (9.1.0)
|
56
|
-
coderay (1.1.2)
|
57
|
-
concurrent-ruby (1.0.5)
|
58
|
-
crass (1.0.2)
|
59
|
-
diff-lcs (1.3)
|
60
|
-
docile (1.1.5)
|
61
|
-
dry-configurable (0.7.0)
|
62
|
-
concurrent-ruby (~> 1.0)
|
63
|
-
dry-container (0.6.0)
|
64
|
-
concurrent-ruby (~> 1.0)
|
65
|
-
dry-configurable (~> 0.1, >= 0.1.3)
|
66
|
-
dry-core (0.3.4)
|
67
|
-
concurrent-ruby (~> 1.0)
|
68
|
-
dry-equalizer (0.2.0)
|
69
|
-
dry-logic (0.4.2)
|
70
|
-
dry-container (~> 0.2, >= 0.2.6)
|
71
|
-
dry-core (~> 0.2)
|
72
|
-
dry-equalizer (~> 0.2)
|
73
|
-
dry-struct (0.2.1)
|
74
|
-
dry-configurable (~> 0.1)
|
75
|
-
dry-equalizer (~> 0.2)
|
76
|
-
dry-types (~> 0.9, >= 0.9.0)
|
77
|
-
ice_nine (~> 0.11)
|
78
|
-
dry-types (0.12.0)
|
79
|
-
concurrent-ruby (~> 1.0)
|
80
|
-
dry-configurable (~> 0.1)
|
81
|
-
dry-container (~> 0.3)
|
82
|
-
dry-core (~> 0.2, >= 0.2.1)
|
83
|
-
dry-equalizer (~> 0.2)
|
84
|
-
dry-logic (~> 0.4, >= 0.4.2)
|
85
|
-
inflecto (~> 0.0.0, >= 0.0.2)
|
86
|
-
erubi (1.6.1)
|
87
|
-
globalid (0.4.0)
|
88
|
-
activesupport (>= 4.2.0)
|
89
|
-
i18n (0.8.6)
|
90
|
-
ice_nine (0.11.2)
|
91
|
-
inflecto (0.0.2)
|
92
|
-
json (2.1.0)
|
93
|
-
loofah (2.1.1)
|
94
|
-
crass (~> 1.0.2)
|
95
|
-
nokogiri (>= 1.5.9)
|
96
|
-
mail (2.6.6)
|
97
|
-
mime-types (>= 1.16, < 4)
|
98
|
-
method_source (0.9.0)
|
99
|
-
mime-types (3.1)
|
100
|
-
mime-types-data (~> 3.2015)
|
101
|
-
mime-types-data (3.2016.0521)
|
102
|
-
mini_portile2 (2.3.0)
|
103
|
-
minitest (5.10.3)
|
104
|
-
nio4r (2.1.0)
|
105
|
-
nokogiri (1.8.1)
|
106
|
-
mini_portile2 (~> 2.3.0)
|
107
|
-
nokogumbo (1.4.13)
|
108
|
-
nokogiri
|
109
|
-
parallel (1.12.0)
|
110
|
-
parser (2.4.0.0)
|
111
|
-
ast (~> 2.2)
|
112
|
-
powerpack (0.1.1)
|
113
|
-
pry (0.11.1)
|
114
|
-
coderay (~> 1.1.0)
|
115
|
-
method_source (~> 0.9.0)
|
116
|
-
rack (2.0.3)
|
117
|
-
rack-test (0.7.0)
|
118
|
-
rack (>= 1.0, < 3)
|
119
|
-
rails (5.1.4)
|
120
|
-
actioncable (= 5.1.4)
|
121
|
-
actionmailer (= 5.1.4)
|
122
|
-
actionpack (= 5.1.4)
|
123
|
-
actionview (= 5.1.4)
|
124
|
-
activejob (= 5.1.4)
|
125
|
-
activemodel (= 5.1.4)
|
126
|
-
activerecord (= 5.1.4)
|
127
|
-
activesupport (= 5.1.4)
|
128
|
-
bundler (>= 1.3.0)
|
129
|
-
railties (= 5.1.4)
|
130
|
-
sprockets-rails (>= 2.0.0)
|
131
|
-
rails-dom-testing (2.0.3)
|
132
|
-
activesupport (>= 4.2.0)
|
133
|
-
nokogiri (>= 1.6)
|
134
|
-
rails-html-sanitizer (1.0.3)
|
135
|
-
loofah (~> 2.0)
|
136
|
-
railties (5.1.4)
|
137
|
-
actionpack (= 5.1.4)
|
138
|
-
activesupport (= 5.1.4)
|
139
|
-
method_source
|
140
|
-
rake (>= 0.8.7)
|
141
|
-
thor (>= 0.18.1, < 2.0)
|
142
|
-
rainbow (2.2.2)
|
143
|
-
rake
|
144
|
-
rake (0.9.6)
|
145
|
-
rspec (3.6.0)
|
146
|
-
rspec-core (~> 3.6.0)
|
147
|
-
rspec-expectations (~> 3.6.0)
|
148
|
-
rspec-mocks (~> 3.6.0)
|
149
|
-
rspec-core (3.6.0)
|
150
|
-
rspec-support (~> 3.6.0)
|
151
|
-
rspec-expectations (3.6.0)
|
152
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
153
|
-
rspec-support (~> 3.6.0)
|
154
|
-
rspec-mocks (3.6.0)
|
155
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
156
|
-
rspec-support (~> 3.6.0)
|
157
|
-
rspec-support (3.6.0)
|
158
|
-
rubocop (0.50.0)
|
159
|
-
parallel (~> 1.10)
|
160
|
-
parser (>= 2.3.3.1, < 3.0)
|
161
|
-
powerpack (~> 0.1)
|
162
|
-
rainbow (>= 2.2.2, < 3.0)
|
163
|
-
ruby-progressbar (~> 1.7)
|
164
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
165
|
-
ruby-progressbar (1.8.3)
|
166
|
-
rubyzip (1.2.1)
|
167
|
-
sanitize (4.5.0)
|
168
|
-
crass (~> 1.0.2)
|
169
|
-
nokogiri (>= 1.4.4)
|
170
|
-
nokogumbo (~> 1.4.1)
|
171
|
-
simplecov (0.15.1)
|
172
|
-
docile (~> 1.1.0)
|
173
|
-
json (>= 1.8, < 3)
|
174
|
-
simplecov-html (~> 0.10.0)
|
175
|
-
simplecov-html (0.10.2)
|
176
|
-
sprockets (3.7.1)
|
177
|
-
concurrent-ruby (~> 1.0)
|
178
|
-
rack (> 1, < 3)
|
179
|
-
sprockets-rails (3.2.1)
|
180
|
-
actionpack (>= 4.0)
|
181
|
-
activesupport (>= 4.0)
|
182
|
-
sprockets (>= 3.0.0)
|
183
|
-
thor (0.20.0)
|
184
|
-
thread_safe (0.3.6)
|
185
|
-
tzinfo (1.2.3)
|
186
|
-
thread_safe (~> 0.1)
|
187
|
-
unicode-display_width (1.3.0)
|
188
|
-
websocket-driver (0.6.5)
|
189
|
-
websocket-extensions (>= 0.1.0)
|
190
|
-
websocket-extensions (0.1.2)
|
191
|
-
wwtd (1.3.0)
|
192
|
-
|
193
|
-
PLATFORMS
|
194
|
-
ruby
|
195
|
-
|
196
|
-
DEPENDENCIES
|
197
|
-
bundler (~> 1.15)
|
198
|
-
byebug (~> 9.0)
|
199
|
-
pry (~> 0)
|
200
|
-
qti!
|
201
|
-
rails (~> 5.1.4)
|
202
|
-
rake (~> 0)
|
203
|
-
rspec (~> 3.6)
|
204
|
-
rspec-mocks (~> 3.6)
|
205
|
-
rubocop (~> 0.50.0)
|
206
|
-
simplecov (~> 0)
|
207
|
-
wwtd (~> 1.3)
|
208
|
-
|
209
|
-
BUNDLED WITH
|
210
|
-
1.15.4
|