qti 0.9.1 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/lib/qti/assessment_item_exporter.rb +1 -1
  3. data/lib/qti/content_packaging/assessment_item.rb +1 -1
  4. data/lib/qti/content_packaging/assessment_test.rb +2 -2
  5. data/lib/qti/content_packaging/choice_interaction.rb +1 -1
  6. data/lib/qti/models/base.rb +13 -5
  7. data/lib/qti/models/manifest.rb +21 -7
  8. data/lib/qti/v1/models/assessment.rb +3 -1
  9. data/lib/qti/v1/models/assessment_item.rb +13 -5
  10. data/lib/qti/v1/models/choices/fill_blank_choice.rb +1 -1
  11. data/lib/qti/v1/models/choices/logical_identifier_choice.rb +1 -1
  12. data/lib/qti/v1/models/interactions/base_interaction.rb +1 -1
  13. data/lib/qti/v1/models/interactions/choice_interaction.rb +19 -5
  14. data/lib/qti/v2/models/assessment_item.rb +23 -6
  15. data/lib/qti/v2/models/assessment_test.rb +3 -1
  16. data/lib/qti/v2/models/choices/gap_match_choice.rb +1 -1
  17. data/lib/qti/v2/models/choices/simple_choice.rb +1 -1
  18. data/lib/qti/v2/models/interactions/base_interaction.rb +1 -1
  19. data/lib/qti/v2/models/interactions/gap_match_interaction.rb +16 -7
  20. data/lib/qti/version.rb +1 -1
  21. data/spec/lib/qti/v1/models/interactions/choice_interaction_spec.rb +9 -2
  22. data/spec/lib/qti/v2/models/assessment_item_spec.rb +12 -0
  23. data/spec/lib/qti/v2/models/assessment_test_spec.rb +9 -2
  24. data/spec/lib/qti_spec.rb +1 -0
  25. data/spec/lib/stupid.xml +128 -0
  26. metadata +19 -17
  27. data/spec/gemfiles/nokogiri-1.6.gemfile.lock +0 -126
  28. data/spec/gemfiles/nokogiri-1.8.gemfile.lock +0 -126
  29. data/spec/gemfiles/rails-4.2.gemfile.lock +0 -203
  30. data/spec/gemfiles/rails-5.0.gemfile.lock +0 -209
  31. data/spec/gemfiles/rails-5.1.gemfile.lock +0 -209
  32. data/spec/gemfiles/sanitize-4.2.gemfile.lock +0 -126
  33. data/spec/gemfiles/sanitize-4.5.gemfile.lock +0 -126
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qti
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hannah Bottalla
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-09-28 00:00:00.000000000 Z
12
+ date: 2017-10-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -45,6 +45,20 @@ dependencies:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 0.2.1
48
+ - !ruby/object:Gem::Dependency
49
+ name: dry-types
50
+ requirement: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.12.0
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.12.0
48
62
  - !ruby/object:Gem::Dependency
49
63
  name: rubyzip
50
64
  requirement: !ruby/object:Gem::Requirement
@@ -494,19 +508,12 @@ files:
494
508
  - spec/fixtures/tests/tests/rtest26.xml
495
509
  - spec/fixtures/tests/tests/rtest27.xml
496
510
  - spec/gemfiles/nokogiri-1.6.gemfile
497
- - spec/gemfiles/nokogiri-1.6.gemfile.lock
498
511
  - spec/gemfiles/nokogiri-1.8.gemfile
499
- - spec/gemfiles/nokogiri-1.8.gemfile.lock
500
512
  - spec/gemfiles/rails-4.2.gemfile
501
- - spec/gemfiles/rails-4.2.gemfile.lock
502
513
  - spec/gemfiles/rails-5.0.gemfile
503
- - spec/gemfiles/rails-5.0.gemfile.lock
504
514
  - spec/gemfiles/rails-5.1.gemfile
505
- - spec/gemfiles/rails-5.1.gemfile.lock
506
515
  - spec/gemfiles/sanitize-4.2.gemfile
507
- - spec/gemfiles/sanitize-4.2.gemfile.lock
508
516
  - spec/gemfiles/sanitize-4.5.gemfile
509
- - spec/gemfiles/sanitize-4.5.gemfile.lock
510
517
  - spec/lib/qti/assessment_item_exporter_spec.rb
511
518
  - spec/lib/qti/exporter_spec.rb
512
519
  - spec/lib/qti/models/base_spec.rb
@@ -537,6 +544,7 @@ files:
537
544
  - spec/lib/qti/v2/models/object_element_spec.rb
538
545
  - spec/lib/qti/v2/models/stimulus_item_spec.rb
539
546
  - spec/lib/qti_spec.rb
547
+ - spec/lib/stupid.xml
540
548
  - spec/spec_helper.rb
541
549
  - spec/support/custom_matchers.rb
542
550
  homepage: https://github.com/instructure/qti
@@ -559,7 +567,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
559
567
  version: '0'
560
568
  requirements: []
561
569
  rubyforge_project:
562
- rubygems_version: 2.6.8
570
+ rubygems_version: 2.5.2
563
571
  signing_key:
564
572
  specification_version: 4
565
573
  summary: QTI 1.2 and 2.1 import and export models
@@ -776,19 +784,12 @@ test_files:
776
784
  - spec/fixtures/tests/tests/rtest26.xml
777
785
  - spec/fixtures/tests/tests/rtest27.xml
778
786
  - spec/gemfiles/nokogiri-1.6.gemfile
779
- - spec/gemfiles/nokogiri-1.6.gemfile.lock
780
787
  - spec/gemfiles/nokogiri-1.8.gemfile
781
- - spec/gemfiles/nokogiri-1.8.gemfile.lock
782
788
  - spec/gemfiles/rails-4.2.gemfile
783
- - spec/gemfiles/rails-4.2.gemfile.lock
784
789
  - spec/gemfiles/rails-5.0.gemfile
785
- - spec/gemfiles/rails-5.0.gemfile.lock
786
790
  - spec/gemfiles/rails-5.1.gemfile
787
- - spec/gemfiles/rails-5.1.gemfile.lock
788
791
  - spec/gemfiles/sanitize-4.2.gemfile
789
- - spec/gemfiles/sanitize-4.2.gemfile.lock
790
792
  - spec/gemfiles/sanitize-4.5.gemfile
791
- - spec/gemfiles/sanitize-4.5.gemfile.lock
792
793
  - spec/lib/qti/assessment_item_exporter_spec.rb
793
794
  - spec/lib/qti/exporter_spec.rb
794
795
  - spec/lib/qti/models/base_spec.rb
@@ -819,5 +820,6 @@ test_files:
819
820
  - spec/lib/qti/v2/models/object_element_spec.rb
820
821
  - spec/lib/qti/v2/models/stimulus_item_spec.rb
821
822
  - spec/lib/qti_spec.rb
823
+ - spec/lib/stupid.xml
822
824
  - spec/spec_helper.rb
823
825
  - spec/support/custom_matchers.rb
@@ -1,126 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- qti (0.9.1)
5
- activesupport (>= 4.2.9, < 5.2)
6
- dry-struct (~> 0.2.1)
7
- nokogiri (>= 1.6.8, < 1.9)
8
- rubyzip (~> 1.2)
9
- sanitize (>= 4.2.0, < 5.0)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- activesupport (5.1.4)
15
- concurrent-ruby (~> 1.0, >= 1.0.2)
16
- i18n (~> 0.7)
17
- minitest (~> 5.1)
18
- tzinfo (~> 1.1)
19
- ast (2.3.0)
20
- byebug (9.1.0)
21
- coderay (1.1.2)
22
- concurrent-ruby (1.0.5)
23
- crass (1.0.2)
24
- diff-lcs (1.3)
25
- docile (1.1.5)
26
- dry-configurable (0.7.0)
27
- concurrent-ruby (~> 1.0)
28
- dry-container (0.6.0)
29
- concurrent-ruby (~> 1.0)
30
- dry-configurable (~> 0.1, >= 0.1.3)
31
- dry-core (0.3.3)
32
- concurrent-ruby (~> 1.0)
33
- dry-equalizer (0.2.0)
34
- dry-logic (0.4.2)
35
- dry-container (~> 0.2, >= 0.2.6)
36
- dry-core (~> 0.2)
37
- dry-equalizer (~> 0.2)
38
- dry-struct (0.2.1)
39
- dry-configurable (~> 0.1)
40
- dry-equalizer (~> 0.2)
41
- dry-types (~> 0.9, >= 0.9.0)
42
- ice_nine (~> 0.11)
43
- dry-types (0.12.0)
44
- concurrent-ruby (~> 1.0)
45
- dry-configurable (~> 0.1)
46
- dry-container (~> 0.3)
47
- dry-core (~> 0.2, >= 0.2.1)
48
- dry-equalizer (~> 0.2)
49
- dry-logic (~> 0.4, >= 0.4.2)
50
- inflecto (~> 0.0.0, >= 0.0.2)
51
- i18n (0.8.6)
52
- ice_nine (0.11.2)
53
- inflecto (0.0.2)
54
- json (2.1.0)
55
- method_source (0.9.0)
56
- mini_portile2 (2.1.0)
57
- minitest (5.10.3)
58
- nokogiri (1.6.8.1)
59
- mini_portile2 (~> 2.1.0)
60
- nokogumbo (1.4.13)
61
- nokogiri
62
- parallel (1.12.0)
63
- parser (2.4.0.0)
64
- ast (~> 2.2)
65
- powerpack (0.1.1)
66
- pry (0.11.1)
67
- coderay (~> 1.1.0)
68
- method_source (~> 0.9.0)
69
- rainbow (2.2.2)
70
- rake
71
- rake (0.9.6)
72
- rspec (3.6.0)
73
- rspec-core (~> 3.6.0)
74
- rspec-expectations (~> 3.6.0)
75
- rspec-mocks (~> 3.6.0)
76
- rspec-core (3.6.0)
77
- rspec-support (~> 3.6.0)
78
- rspec-expectations (3.6.0)
79
- diff-lcs (>= 1.2.0, < 2.0)
80
- rspec-support (~> 3.6.0)
81
- rspec-mocks (3.6.0)
82
- diff-lcs (>= 1.2.0, < 2.0)
83
- rspec-support (~> 3.6.0)
84
- rspec-support (3.6.0)
85
- rubocop (0.50.0)
86
- parallel (~> 1.10)
87
- parser (>= 2.3.3.1, < 3.0)
88
- powerpack (~> 0.1)
89
- rainbow (>= 2.2.2, < 3.0)
90
- ruby-progressbar (~> 1.7)
91
- unicode-display_width (~> 1.0, >= 1.0.1)
92
- ruby-progressbar (1.8.3)
93
- rubyzip (1.2.1)
94
- sanitize (4.5.0)
95
- crass (~> 1.0.2)
96
- nokogiri (>= 1.4.4)
97
- nokogumbo (~> 1.4.1)
98
- simplecov (0.15.1)
99
- docile (~> 1.1.0)
100
- json (>= 1.8, < 3)
101
- simplecov-html (~> 0.10.0)
102
- simplecov-html (0.10.2)
103
- thread_safe (0.3.6)
104
- tzinfo (1.2.3)
105
- thread_safe (~> 0.1)
106
- unicode-display_width (1.3.0)
107
- wwtd (1.3.0)
108
-
109
- PLATFORMS
110
- ruby
111
-
112
- DEPENDENCIES
113
- bundler (~> 1.15)
114
- byebug (~> 9.0)
115
- nokogiri (~> 1.6.8)
116
- pry (~> 0)
117
- qti!
118
- rake (~> 0)
119
- rspec (~> 3.6)
120
- rspec-mocks (~> 3.6)
121
- rubocop (~> 0.50.0)
122
- simplecov (~> 0)
123
- wwtd (~> 1.3)
124
-
125
- BUNDLED WITH
126
- 1.15.4
@@ -1,126 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- qti (0.9.1)
5
- activesupport (>= 4.2.9, < 5.2)
6
- dry-struct (~> 0.2.1)
7
- nokogiri (>= 1.6.8, < 1.9)
8
- rubyzip (~> 1.2)
9
- sanitize (>= 4.2.0, < 5.0)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- activesupport (5.1.4)
15
- concurrent-ruby (~> 1.0, >= 1.0.2)
16
- i18n (~> 0.7)
17
- minitest (~> 5.1)
18
- tzinfo (~> 1.1)
19
- ast (2.3.0)
20
- byebug (9.1.0)
21
- coderay (1.1.2)
22
- concurrent-ruby (1.0.5)
23
- crass (1.0.2)
24
- diff-lcs (1.3)
25
- docile (1.1.5)
26
- dry-configurable (0.7.0)
27
- concurrent-ruby (~> 1.0)
28
- dry-container (0.6.0)
29
- concurrent-ruby (~> 1.0)
30
- dry-configurable (~> 0.1, >= 0.1.3)
31
- dry-core (0.3.3)
32
- concurrent-ruby (~> 1.0)
33
- dry-equalizer (0.2.0)
34
- dry-logic (0.4.2)
35
- dry-container (~> 0.2, >= 0.2.6)
36
- dry-core (~> 0.2)
37
- dry-equalizer (~> 0.2)
38
- dry-struct (0.2.1)
39
- dry-configurable (~> 0.1)
40
- dry-equalizer (~> 0.2)
41
- dry-types (~> 0.9, >= 0.9.0)
42
- ice_nine (~> 0.11)
43
- dry-types (0.12.0)
44
- concurrent-ruby (~> 1.0)
45
- dry-configurable (~> 0.1)
46
- dry-container (~> 0.3)
47
- dry-core (~> 0.2, >= 0.2.1)
48
- dry-equalizer (~> 0.2)
49
- dry-logic (~> 0.4, >= 0.4.2)
50
- inflecto (~> 0.0.0, >= 0.0.2)
51
- i18n (0.8.6)
52
- ice_nine (0.11.2)
53
- inflecto (0.0.2)
54
- json (2.1.0)
55
- method_source (0.9.0)
56
- mini_portile2 (2.3.0)
57
- minitest (5.10.3)
58
- nokogiri (1.8.1)
59
- mini_portile2 (~> 2.3.0)
60
- nokogumbo (1.4.13)
61
- nokogiri
62
- parallel (1.12.0)
63
- parser (2.4.0.0)
64
- ast (~> 2.2)
65
- powerpack (0.1.1)
66
- pry (0.11.1)
67
- coderay (~> 1.1.0)
68
- method_source (~> 0.9.0)
69
- rainbow (2.2.2)
70
- rake
71
- rake (0.9.6)
72
- rspec (3.6.0)
73
- rspec-core (~> 3.6.0)
74
- rspec-expectations (~> 3.6.0)
75
- rspec-mocks (~> 3.6.0)
76
- rspec-core (3.6.0)
77
- rspec-support (~> 3.6.0)
78
- rspec-expectations (3.6.0)
79
- diff-lcs (>= 1.2.0, < 2.0)
80
- rspec-support (~> 3.6.0)
81
- rspec-mocks (3.6.0)
82
- diff-lcs (>= 1.2.0, < 2.0)
83
- rspec-support (~> 3.6.0)
84
- rspec-support (3.6.0)
85
- rubocop (0.50.0)
86
- parallel (~> 1.10)
87
- parser (>= 2.3.3.1, < 3.0)
88
- powerpack (~> 0.1)
89
- rainbow (>= 2.2.2, < 3.0)
90
- ruby-progressbar (~> 1.7)
91
- unicode-display_width (~> 1.0, >= 1.0.1)
92
- ruby-progressbar (1.8.3)
93
- rubyzip (1.2.1)
94
- sanitize (4.5.0)
95
- crass (~> 1.0.2)
96
- nokogiri (>= 1.4.4)
97
- nokogumbo (~> 1.4.1)
98
- simplecov (0.15.1)
99
- docile (~> 1.1.0)
100
- json (>= 1.8, < 3)
101
- simplecov-html (~> 0.10.0)
102
- simplecov-html (0.10.2)
103
- thread_safe (0.3.6)
104
- tzinfo (1.2.3)
105
- thread_safe (~> 0.1)
106
- unicode-display_width (1.3.0)
107
- wwtd (1.3.0)
108
-
109
- PLATFORMS
110
- ruby
111
-
112
- DEPENDENCIES
113
- bundler (~> 1.15)
114
- byebug (~> 9.0)
115
- nokogiri (~> 1.8.1)
116
- pry (~> 0)
117
- qti!
118
- rake (~> 0)
119
- rspec (~> 3.6)
120
- rspec-mocks (~> 3.6)
121
- rubocop (~> 0.50.0)
122
- simplecov (~> 0)
123
- wwtd (~> 1.3)
124
-
125
- BUNDLED WITH
126
- 1.15.4
@@ -1,203 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- qti (0.9.1)
5
- activesupport (>= 4.2.9, < 5.2)
6
- dry-struct (~> 0.2.1)
7
- nokogiri (>= 1.6.8, < 1.9)
8
- rubyzip (~> 1.2)
9
- sanitize (>= 4.2.0, < 5.0)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- actionmailer (4.2.9)
15
- actionpack (= 4.2.9)
16
- actionview (= 4.2.9)
17
- activejob (= 4.2.9)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 1.0, >= 1.0.5)
20
- actionpack (4.2.9)
21
- actionview (= 4.2.9)
22
- activesupport (= 4.2.9)
23
- rack (~> 1.6)
24
- rack-test (~> 0.6.2)
25
- rails-dom-testing (~> 1.0, >= 1.0.5)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (4.2.9)
28
- activesupport (= 4.2.9)
29
- builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 1.0, >= 1.0.5)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (4.2.9)
34
- activesupport (= 4.2.9)
35
- globalid (>= 0.3.0)
36
- activemodel (4.2.9)
37
- activesupport (= 4.2.9)
38
- builder (~> 3.1)
39
- activerecord (4.2.9)
40
- activemodel (= 4.2.9)
41
- activesupport (= 4.2.9)
42
- arel (~> 6.0)
43
- activesupport (4.2.9)
44
- i18n (~> 0.7)
45
- minitest (~> 5.1)
46
- thread_safe (~> 0.3, >= 0.3.4)
47
- tzinfo (~> 1.1)
48
- arel (6.0.4)
49
- ast (2.3.0)
50
- builder (3.2.3)
51
- byebug (9.1.0)
52
- coderay (1.1.2)
53
- concurrent-ruby (1.0.5)
54
- crass (1.0.2)
55
- diff-lcs (1.3)
56
- docile (1.1.5)
57
- dry-configurable (0.7.0)
58
- concurrent-ruby (~> 1.0)
59
- dry-container (0.6.0)
60
- concurrent-ruby (~> 1.0)
61
- dry-configurable (~> 0.1, >= 0.1.3)
62
- dry-core (0.3.3)
63
- concurrent-ruby (~> 1.0)
64
- dry-equalizer (0.2.0)
65
- dry-logic (0.4.2)
66
- dry-container (~> 0.2, >= 0.2.6)
67
- dry-core (~> 0.2)
68
- dry-equalizer (~> 0.2)
69
- dry-struct (0.2.1)
70
- dry-configurable (~> 0.1)
71
- dry-equalizer (~> 0.2)
72
- dry-types (~> 0.9, >= 0.9.0)
73
- ice_nine (~> 0.11)
74
- dry-types (0.12.0)
75
- concurrent-ruby (~> 1.0)
76
- dry-configurable (~> 0.1)
77
- dry-container (~> 0.3)
78
- dry-core (~> 0.2, >= 0.2.1)
79
- dry-equalizer (~> 0.2)
80
- dry-logic (~> 0.4, >= 0.4.2)
81
- inflecto (~> 0.0.0, >= 0.0.2)
82
- erubis (2.7.0)
83
- globalid (0.4.0)
84
- activesupport (>= 4.2.0)
85
- i18n (0.8.6)
86
- ice_nine (0.11.2)
87
- inflecto (0.0.2)
88
- json (2.1.0)
89
- loofah (2.1.1)
90
- crass (~> 1.0.2)
91
- nokogiri (>= 1.5.9)
92
- mail (2.6.6)
93
- mime-types (>= 1.16, < 4)
94
- method_source (0.9.0)
95
- mime-types (3.1)
96
- mime-types-data (~> 3.2015)
97
- mime-types-data (3.2016.0521)
98
- mini_portile2 (2.3.0)
99
- minitest (5.10.3)
100
- nokogiri (1.8.1)
101
- mini_portile2 (~> 2.3.0)
102
- nokogumbo (1.4.13)
103
- nokogiri
104
- parallel (1.12.0)
105
- parser (2.4.0.0)
106
- ast (~> 2.2)
107
- powerpack (0.1.1)
108
- pry (0.11.1)
109
- coderay (~> 1.1.0)
110
- method_source (~> 0.9.0)
111
- rack (1.6.8)
112
- rack-test (0.6.3)
113
- rack (>= 1.0)
114
- rails (4.2.9)
115
- actionmailer (= 4.2.9)
116
- actionpack (= 4.2.9)
117
- actionview (= 4.2.9)
118
- activejob (= 4.2.9)
119
- activemodel (= 4.2.9)
120
- activerecord (= 4.2.9)
121
- activesupport (= 4.2.9)
122
- bundler (>= 1.3.0, < 2.0)
123
- railties (= 4.2.9)
124
- sprockets-rails
125
- rails-deprecated_sanitizer (1.0.3)
126
- activesupport (>= 4.2.0.alpha)
127
- rails-dom-testing (1.0.8)
128
- activesupport (>= 4.2.0.beta, < 5.0)
129
- nokogiri (~> 1.6)
130
- rails-deprecated_sanitizer (>= 1.0.1)
131
- rails-html-sanitizer (1.0.3)
132
- loofah (~> 2.0)
133
- railties (4.2.9)
134
- actionpack (= 4.2.9)
135
- activesupport (= 4.2.9)
136
- rake (>= 0.8.7)
137
- thor (>= 0.18.1, < 2.0)
138
- rainbow (2.2.2)
139
- rake
140
- rake (0.9.6)
141
- rspec (3.6.0)
142
- rspec-core (~> 3.6.0)
143
- rspec-expectations (~> 3.6.0)
144
- rspec-mocks (~> 3.6.0)
145
- rspec-core (3.6.0)
146
- rspec-support (~> 3.6.0)
147
- rspec-expectations (3.6.0)
148
- diff-lcs (>= 1.2.0, < 2.0)
149
- rspec-support (~> 3.6.0)
150
- rspec-mocks (3.6.0)
151
- diff-lcs (>= 1.2.0, < 2.0)
152
- rspec-support (~> 3.6.0)
153
- rspec-support (3.6.0)
154
- rubocop (0.50.0)
155
- parallel (~> 1.10)
156
- parser (>= 2.3.3.1, < 3.0)
157
- powerpack (~> 0.1)
158
- rainbow (>= 2.2.2, < 3.0)
159
- ruby-progressbar (~> 1.7)
160
- unicode-display_width (~> 1.0, >= 1.0.1)
161
- ruby-progressbar (1.8.3)
162
- rubyzip (1.2.1)
163
- sanitize (4.5.0)
164
- crass (~> 1.0.2)
165
- nokogiri (>= 1.4.4)
166
- nokogumbo (~> 1.4.1)
167
- simplecov (0.15.1)
168
- docile (~> 1.1.0)
169
- json (>= 1.8, < 3)
170
- simplecov-html (~> 0.10.0)
171
- simplecov-html (0.10.2)
172
- sprockets (3.7.1)
173
- concurrent-ruby (~> 1.0)
174
- rack (> 1, < 3)
175
- sprockets-rails (3.2.1)
176
- actionpack (>= 4.0)
177
- activesupport (>= 4.0)
178
- sprockets (>= 3.0.0)
179
- thor (0.20.0)
180
- thread_safe (0.3.6)
181
- tzinfo (1.2.3)
182
- thread_safe (~> 0.1)
183
- unicode-display_width (1.3.0)
184
- wwtd (1.3.0)
185
-
186
- PLATFORMS
187
- ruby
188
-
189
- DEPENDENCIES
190
- bundler (~> 1.15)
191
- byebug (~> 9.0)
192
- pry (~> 0)
193
- qti!
194
- rails (~> 4.2.9)
195
- rake (~> 0)
196
- rspec (~> 3.6)
197
- rspec-mocks (~> 3.6)
198
- rubocop (~> 0.50.0)
199
- simplecov (~> 0)
200
- wwtd (~> 1.3)
201
-
202
- BUNDLED WITH
203
- 1.15.4