shoulda-context 1.2.2 → 2.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +0 -1
- data/.rubocop.yml +190 -0
- data/.ruby-version +1 -1
- data/.travis.yml +27 -2
- data/Appraisals +15 -32
- data/CHANGELOG.md +27 -0
- data/Gemfile +4 -1
- data/Gemfile.lock +72 -0
- data/MIT-LICENSE +1 -1
- data/README.md +140 -29
- data/Rakefile +19 -14
- data/bin/install_gems_in_all_appraisals +16 -0
- data/bin/run_all_tests +16 -0
- data/bin/setup +190 -0
- data/bin/supported_ruby_versions +7 -0
- data/bin/update_gem_in_all_appraisals +17 -0
- data/bin/update_gems_in_all_appraisals +16 -0
- data/{bin → exe}/convert_to_should_syntax +0 -0
- data/gemfiles/rails_4_2.gemfile +10 -0
- data/gemfiles/rails_4_2.gemfile.lock +164 -0
- data/gemfiles/rails_5_0.gemfile +10 -0
- data/gemfiles/rails_5_0.gemfile.lock +170 -0
- data/gemfiles/rails_5_1.gemfile +10 -0
- data/gemfiles/rails_5_1.gemfile.lock +170 -0
- data/gemfiles/rails_5_2.gemfile +10 -0
- data/gemfiles/rails_5_2.gemfile.lock +178 -0
- data/lib/shoulda/context.rb +12 -16
- data/lib/shoulda/context/assertions.rb +16 -13
- data/lib/shoulda/context/configuration.rb +19 -0
- data/lib/shoulda/context/context.rb +22 -305
- data/lib/shoulda/context/dsl.rb +279 -0
- data/lib/shoulda/context/railtie.rb +14 -0
- data/lib/shoulda/context/test_framework_detection.rb +4 -5
- data/lib/shoulda/context/version.rb +1 -1
- data/lib/shoulda/context/world.rb +22 -0
- data/shoulda-context.gemspec +19 -17
- data/test/fake_rails_root/test/shoulda_macros/custom_macro.rb +1 -1
- data/test/fake_rails_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +1 -2
- data/test/fake_rails_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +1 -2
- data/test/shoulda/autoload_macro_test.rb +1 -1
- data/test/shoulda/context_test.rb +92 -53
- data/test/shoulda/convert_to_should_syntax_test.rb +5 -7
- data/test/shoulda/helpers_test.rb +24 -59
- data/test/shoulda/railtie_test.rb +43 -0
- data/test/shoulda/should_test.rb +163 -24
- data/test/shoulda/test_framework_detection_test.rb +64 -71
- data/test/support/current_bundle.rb +61 -0
- data/test/support/rails_application_with_shoulda_context.rb +46 -0
- data/test/support/snowglobe.rb +5 -0
- data/test/test_helper.rb +35 -11
- metadata +71 -60
- data/gemfiles/minitest_4_x.gemfile +0 -7
- data/gemfiles/minitest_4_x.gemfile.lock +0 -96
- data/gemfiles/minitest_5_x.gemfile +0 -7
- data/gemfiles/minitest_5_x.gemfile.lock +0 -102
- data/gemfiles/rails_3_0.gemfile +0 -8
- data/gemfiles/rails_3_0.gemfile.lock +0 -93
- data/gemfiles/rails_3_1.gemfile +0 -10
- data/gemfiles/rails_3_1.gemfile.lock +0 -114
- data/gemfiles/rails_3_2.gemfile +0 -10
- data/gemfiles/rails_3_2.gemfile.lock +0 -112
- data/gemfiles/rails_4_0.gemfile +0 -10
- data/gemfiles/rails_4_0.gemfile.lock +0 -107
- data/gemfiles/rails_4_1.gemfile +0 -10
- data/gemfiles/rails_4_1.gemfile.lock +0 -119
- data/gemfiles/test_unit.gemfile +0 -7
- data/gemfiles/test_unit.gemfile.lock +0 -95
- data/init.rb +0 -1
- data/rails/init.rb +0 -4
@@ -0,0 +1,170 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
shoulda-context (2.0.0.rc1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actioncable (5.0.7.1)
|
10
|
+
actionpack (= 5.0.7.1)
|
11
|
+
nio4r (>= 1.2, < 3.0)
|
12
|
+
websocket-driver (~> 0.6.1)
|
13
|
+
actionmailer (5.0.7.1)
|
14
|
+
actionpack (= 5.0.7.1)
|
15
|
+
actionview (= 5.0.7.1)
|
16
|
+
activejob (= 5.0.7.1)
|
17
|
+
mail (~> 2.5, >= 2.5.4)
|
18
|
+
rails-dom-testing (~> 2.0)
|
19
|
+
actionpack (5.0.7.1)
|
20
|
+
actionview (= 5.0.7.1)
|
21
|
+
activesupport (= 5.0.7.1)
|
22
|
+
rack (~> 2.0)
|
23
|
+
rack-test (~> 0.6.3)
|
24
|
+
rails-dom-testing (~> 2.0)
|
25
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
26
|
+
actionview (5.0.7.1)
|
27
|
+
activesupport (= 5.0.7.1)
|
28
|
+
builder (~> 3.1)
|
29
|
+
erubis (~> 2.7.0)
|
30
|
+
rails-dom-testing (~> 2.0)
|
31
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
32
|
+
activejob (5.0.7.1)
|
33
|
+
activesupport (= 5.0.7.1)
|
34
|
+
globalid (>= 0.3.6)
|
35
|
+
activemodel (5.0.7.1)
|
36
|
+
activesupport (= 5.0.7.1)
|
37
|
+
activerecord (5.0.7.1)
|
38
|
+
activemodel (= 5.0.7.1)
|
39
|
+
activesupport (= 5.0.7.1)
|
40
|
+
arel (~> 7.0)
|
41
|
+
activesupport (5.0.7.1)
|
42
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
43
|
+
i18n (>= 0.7, < 2)
|
44
|
+
minitest (~> 5.1)
|
45
|
+
tzinfo (~> 1.1)
|
46
|
+
appraisal (2.2.0)
|
47
|
+
bundler
|
48
|
+
rake
|
49
|
+
thor (>= 0.14.0)
|
50
|
+
arel (7.1.4)
|
51
|
+
ast (2.4.0)
|
52
|
+
builder (3.2.3)
|
53
|
+
byebug (10.0.2)
|
54
|
+
coderay (1.1.2)
|
55
|
+
concurrent-ruby (1.1.4)
|
56
|
+
crass (1.0.4)
|
57
|
+
erubis (2.7.0)
|
58
|
+
globalid (0.4.2)
|
59
|
+
activesupport (>= 4.2.0)
|
60
|
+
i18n (1.5.3)
|
61
|
+
concurrent-ruby (~> 1.0)
|
62
|
+
jaro_winkler (1.5.2)
|
63
|
+
loofah (2.2.3)
|
64
|
+
crass (~> 1.0.2)
|
65
|
+
nokogiri (>= 1.5.9)
|
66
|
+
m (1.5.1)
|
67
|
+
method_source (>= 0.6.7)
|
68
|
+
rake (>= 0.9.2.2)
|
69
|
+
mail (2.7.1)
|
70
|
+
mini_mime (>= 0.1.1)
|
71
|
+
metaclass (0.0.4)
|
72
|
+
method_source (0.9.2)
|
73
|
+
mini_mime (1.0.1)
|
74
|
+
mini_portile2 (2.4.0)
|
75
|
+
minitest (5.11.3)
|
76
|
+
mocha (1.8.0)
|
77
|
+
metaclass (~> 0.0.1)
|
78
|
+
nio4r (2.3.1)
|
79
|
+
nokogiri (1.10.1)
|
80
|
+
mini_portile2 (~> 2.4.0)
|
81
|
+
parallel (1.14.0)
|
82
|
+
parser (2.6.0.0)
|
83
|
+
ast (~> 2.4.0)
|
84
|
+
power_assert (1.1.3)
|
85
|
+
powerpack (0.1.2)
|
86
|
+
pry (0.12.2)
|
87
|
+
coderay (~> 1.1.0)
|
88
|
+
method_source (~> 0.9.0)
|
89
|
+
pry-byebug (3.6.0)
|
90
|
+
byebug (~> 10.0)
|
91
|
+
pry (~> 0.10)
|
92
|
+
psych (3.1.0)
|
93
|
+
rack (2.0.6)
|
94
|
+
rack-test (0.6.3)
|
95
|
+
rack (>= 1.0)
|
96
|
+
rails (5.0.7.1)
|
97
|
+
actioncable (= 5.0.7.1)
|
98
|
+
actionmailer (= 5.0.7.1)
|
99
|
+
actionpack (= 5.0.7.1)
|
100
|
+
actionview (= 5.0.7.1)
|
101
|
+
activejob (= 5.0.7.1)
|
102
|
+
activemodel (= 5.0.7.1)
|
103
|
+
activerecord (= 5.0.7.1)
|
104
|
+
activesupport (= 5.0.7.1)
|
105
|
+
bundler (>= 1.3.0)
|
106
|
+
railties (= 5.0.7.1)
|
107
|
+
sprockets-rails (>= 2.0.0)
|
108
|
+
rails-dom-testing (2.0.3)
|
109
|
+
activesupport (>= 4.2.0)
|
110
|
+
nokogiri (>= 1.6)
|
111
|
+
rails-html-sanitizer (1.0.4)
|
112
|
+
loofah (~> 2.2, >= 2.2.2)
|
113
|
+
railties (5.0.7.1)
|
114
|
+
actionpack (= 5.0.7.1)
|
115
|
+
activesupport (= 5.0.7.1)
|
116
|
+
method_source
|
117
|
+
rake (>= 0.8.7)
|
118
|
+
thor (>= 0.18.1, < 2.0)
|
119
|
+
rainbow (3.0.0)
|
120
|
+
rake (12.3.2)
|
121
|
+
rubocop (0.65.0)
|
122
|
+
jaro_winkler (~> 1.5.1)
|
123
|
+
parallel (~> 1.10)
|
124
|
+
parser (>= 2.5, != 2.5.1.1)
|
125
|
+
powerpack (~> 0.1)
|
126
|
+
psych (>= 3.1.0)
|
127
|
+
rainbow (>= 2.2.2, < 4.0)
|
128
|
+
ruby-progressbar (~> 1.7)
|
129
|
+
unicode-display_width (~> 1.4.0)
|
130
|
+
ruby-progressbar (1.10.0)
|
131
|
+
snowglobe (0.1.0)
|
132
|
+
sprockets (3.7.2)
|
133
|
+
concurrent-ruby (~> 1.0)
|
134
|
+
rack (> 1, < 3)
|
135
|
+
sprockets-rails (3.2.1)
|
136
|
+
actionpack (>= 4.0)
|
137
|
+
activesupport (>= 4.0)
|
138
|
+
sprockets (>= 3.0.0)
|
139
|
+
sqlite3 (1.3.13)
|
140
|
+
test-unit (3.3.0)
|
141
|
+
power_assert
|
142
|
+
thor (0.20.3)
|
143
|
+
thread_safe (0.3.6)
|
144
|
+
tzinfo (1.2.5)
|
145
|
+
thread_safe (~> 0.1)
|
146
|
+
unicode-display_width (1.4.1)
|
147
|
+
websocket-driver (0.6.5)
|
148
|
+
websocket-extensions (>= 0.1.0)
|
149
|
+
websocket-extensions (0.1.3)
|
150
|
+
|
151
|
+
PLATFORMS
|
152
|
+
ruby
|
153
|
+
|
154
|
+
DEPENDENCIES
|
155
|
+
appraisal
|
156
|
+
bundler (~> 1.0)
|
157
|
+
m
|
158
|
+
minitest
|
159
|
+
mocha
|
160
|
+
pry-byebug
|
161
|
+
rails (~> 5.0.0)
|
162
|
+
rake
|
163
|
+
rubocop
|
164
|
+
shoulda-context!
|
165
|
+
snowglobe
|
166
|
+
sqlite3 (~> 1.3.6)
|
167
|
+
test-unit
|
168
|
+
|
169
|
+
BUNDLED WITH
|
170
|
+
1.17.3
|
@@ -0,0 +1,170 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
shoulda-context (2.0.0.rc1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actioncable (5.1.6.1)
|
10
|
+
actionpack (= 5.1.6.1)
|
11
|
+
nio4r (~> 2.0)
|
12
|
+
websocket-driver (~> 0.6.1)
|
13
|
+
actionmailer (5.1.6.1)
|
14
|
+
actionpack (= 5.1.6.1)
|
15
|
+
actionview (= 5.1.6.1)
|
16
|
+
activejob (= 5.1.6.1)
|
17
|
+
mail (~> 2.5, >= 2.5.4)
|
18
|
+
rails-dom-testing (~> 2.0)
|
19
|
+
actionpack (5.1.6.1)
|
20
|
+
actionview (= 5.1.6.1)
|
21
|
+
activesupport (= 5.1.6.1)
|
22
|
+
rack (~> 2.0)
|
23
|
+
rack-test (>= 0.6.3)
|
24
|
+
rails-dom-testing (~> 2.0)
|
25
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
26
|
+
actionview (5.1.6.1)
|
27
|
+
activesupport (= 5.1.6.1)
|
28
|
+
builder (~> 3.1)
|
29
|
+
erubi (~> 1.4)
|
30
|
+
rails-dom-testing (~> 2.0)
|
31
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
32
|
+
activejob (5.1.6.1)
|
33
|
+
activesupport (= 5.1.6.1)
|
34
|
+
globalid (>= 0.3.6)
|
35
|
+
activemodel (5.1.6.1)
|
36
|
+
activesupport (= 5.1.6.1)
|
37
|
+
activerecord (5.1.6.1)
|
38
|
+
activemodel (= 5.1.6.1)
|
39
|
+
activesupport (= 5.1.6.1)
|
40
|
+
arel (~> 8.0)
|
41
|
+
activesupport (5.1.6.1)
|
42
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
43
|
+
i18n (>= 0.7, < 2)
|
44
|
+
minitest (~> 5.1)
|
45
|
+
tzinfo (~> 1.1)
|
46
|
+
appraisal (2.2.0)
|
47
|
+
bundler
|
48
|
+
rake
|
49
|
+
thor (>= 0.14.0)
|
50
|
+
arel (8.0.0)
|
51
|
+
ast (2.4.0)
|
52
|
+
builder (3.2.3)
|
53
|
+
byebug (10.0.2)
|
54
|
+
coderay (1.1.2)
|
55
|
+
concurrent-ruby (1.1.4)
|
56
|
+
crass (1.0.4)
|
57
|
+
erubi (1.8.0)
|
58
|
+
globalid (0.4.2)
|
59
|
+
activesupport (>= 4.2.0)
|
60
|
+
i18n (1.5.3)
|
61
|
+
concurrent-ruby (~> 1.0)
|
62
|
+
jaro_winkler (1.5.2)
|
63
|
+
loofah (2.2.3)
|
64
|
+
crass (~> 1.0.2)
|
65
|
+
nokogiri (>= 1.5.9)
|
66
|
+
m (1.5.1)
|
67
|
+
method_source (>= 0.6.7)
|
68
|
+
rake (>= 0.9.2.2)
|
69
|
+
mail (2.7.1)
|
70
|
+
mini_mime (>= 0.1.1)
|
71
|
+
metaclass (0.0.4)
|
72
|
+
method_source (0.9.2)
|
73
|
+
mini_mime (1.0.1)
|
74
|
+
mini_portile2 (2.4.0)
|
75
|
+
minitest (5.11.3)
|
76
|
+
mocha (1.8.0)
|
77
|
+
metaclass (~> 0.0.1)
|
78
|
+
nio4r (2.3.1)
|
79
|
+
nokogiri (1.10.1)
|
80
|
+
mini_portile2 (~> 2.4.0)
|
81
|
+
parallel (1.14.0)
|
82
|
+
parser (2.6.0.0)
|
83
|
+
ast (~> 2.4.0)
|
84
|
+
power_assert (1.1.3)
|
85
|
+
powerpack (0.1.2)
|
86
|
+
pry (0.12.2)
|
87
|
+
coderay (~> 1.1.0)
|
88
|
+
method_source (~> 0.9.0)
|
89
|
+
pry-byebug (3.6.0)
|
90
|
+
byebug (~> 10.0)
|
91
|
+
pry (~> 0.10)
|
92
|
+
psych (3.1.0)
|
93
|
+
rack (2.0.6)
|
94
|
+
rack-test (1.1.0)
|
95
|
+
rack (>= 1.0, < 3)
|
96
|
+
rails (5.1.6.1)
|
97
|
+
actioncable (= 5.1.6.1)
|
98
|
+
actionmailer (= 5.1.6.1)
|
99
|
+
actionpack (= 5.1.6.1)
|
100
|
+
actionview (= 5.1.6.1)
|
101
|
+
activejob (= 5.1.6.1)
|
102
|
+
activemodel (= 5.1.6.1)
|
103
|
+
activerecord (= 5.1.6.1)
|
104
|
+
activesupport (= 5.1.6.1)
|
105
|
+
bundler (>= 1.3.0)
|
106
|
+
railties (= 5.1.6.1)
|
107
|
+
sprockets-rails (>= 2.0.0)
|
108
|
+
rails-dom-testing (2.0.3)
|
109
|
+
activesupport (>= 4.2.0)
|
110
|
+
nokogiri (>= 1.6)
|
111
|
+
rails-html-sanitizer (1.0.4)
|
112
|
+
loofah (~> 2.2, >= 2.2.2)
|
113
|
+
railties (5.1.6.1)
|
114
|
+
actionpack (= 5.1.6.1)
|
115
|
+
activesupport (= 5.1.6.1)
|
116
|
+
method_source
|
117
|
+
rake (>= 0.8.7)
|
118
|
+
thor (>= 0.18.1, < 2.0)
|
119
|
+
rainbow (3.0.0)
|
120
|
+
rake (12.3.2)
|
121
|
+
rubocop (0.65.0)
|
122
|
+
jaro_winkler (~> 1.5.1)
|
123
|
+
parallel (~> 1.10)
|
124
|
+
parser (>= 2.5, != 2.5.1.1)
|
125
|
+
powerpack (~> 0.1)
|
126
|
+
psych (>= 3.1.0)
|
127
|
+
rainbow (>= 2.2.2, < 4.0)
|
128
|
+
ruby-progressbar (~> 1.7)
|
129
|
+
unicode-display_width (~> 1.4.0)
|
130
|
+
ruby-progressbar (1.10.0)
|
131
|
+
snowglobe (0.1.0)
|
132
|
+
sprockets (3.7.2)
|
133
|
+
concurrent-ruby (~> 1.0)
|
134
|
+
rack (> 1, < 3)
|
135
|
+
sprockets-rails (3.2.1)
|
136
|
+
actionpack (>= 4.0)
|
137
|
+
activesupport (>= 4.0)
|
138
|
+
sprockets (>= 3.0.0)
|
139
|
+
sqlite3 (1.3.13)
|
140
|
+
test-unit (3.3.0)
|
141
|
+
power_assert
|
142
|
+
thor (0.20.3)
|
143
|
+
thread_safe (0.3.6)
|
144
|
+
tzinfo (1.2.5)
|
145
|
+
thread_safe (~> 0.1)
|
146
|
+
unicode-display_width (1.4.1)
|
147
|
+
websocket-driver (0.6.5)
|
148
|
+
websocket-extensions (>= 0.1.0)
|
149
|
+
websocket-extensions (0.1.3)
|
150
|
+
|
151
|
+
PLATFORMS
|
152
|
+
ruby
|
153
|
+
|
154
|
+
DEPENDENCIES
|
155
|
+
appraisal
|
156
|
+
bundler (~> 1.0)
|
157
|
+
m
|
158
|
+
minitest
|
159
|
+
mocha
|
160
|
+
pry-byebug
|
161
|
+
rails (~> 5.1.0)
|
162
|
+
rake
|
163
|
+
rubocop
|
164
|
+
shoulda-context!
|
165
|
+
snowglobe
|
166
|
+
sqlite3 (~> 1.3.6)
|
167
|
+
test-unit
|
168
|
+
|
169
|
+
BUNDLED WITH
|
170
|
+
1.17.3
|
@@ -0,0 +1,178 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
shoulda-context (2.0.0.rc1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actioncable (5.2.2)
|
10
|
+
actionpack (= 5.2.2)
|
11
|
+
nio4r (~> 2.0)
|
12
|
+
websocket-driver (>= 0.6.1)
|
13
|
+
actionmailer (5.2.2)
|
14
|
+
actionpack (= 5.2.2)
|
15
|
+
actionview (= 5.2.2)
|
16
|
+
activejob (= 5.2.2)
|
17
|
+
mail (~> 2.5, >= 2.5.4)
|
18
|
+
rails-dom-testing (~> 2.0)
|
19
|
+
actionpack (5.2.2)
|
20
|
+
actionview (= 5.2.2)
|
21
|
+
activesupport (= 5.2.2)
|
22
|
+
rack (~> 2.0)
|
23
|
+
rack-test (>= 0.6.3)
|
24
|
+
rails-dom-testing (~> 2.0)
|
25
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
26
|
+
actionview (5.2.2)
|
27
|
+
activesupport (= 5.2.2)
|
28
|
+
builder (~> 3.1)
|
29
|
+
erubi (~> 1.4)
|
30
|
+
rails-dom-testing (~> 2.0)
|
31
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
32
|
+
activejob (5.2.2)
|
33
|
+
activesupport (= 5.2.2)
|
34
|
+
globalid (>= 0.3.6)
|
35
|
+
activemodel (5.2.2)
|
36
|
+
activesupport (= 5.2.2)
|
37
|
+
activerecord (5.2.2)
|
38
|
+
activemodel (= 5.2.2)
|
39
|
+
activesupport (= 5.2.2)
|
40
|
+
arel (>= 9.0)
|
41
|
+
activestorage (5.2.2)
|
42
|
+
actionpack (= 5.2.2)
|
43
|
+
activerecord (= 5.2.2)
|
44
|
+
marcel (~> 0.3.1)
|
45
|
+
activesupport (5.2.2)
|
46
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
47
|
+
i18n (>= 0.7, < 2)
|
48
|
+
minitest (~> 5.1)
|
49
|
+
tzinfo (~> 1.1)
|
50
|
+
appraisal (2.2.0)
|
51
|
+
bundler
|
52
|
+
rake
|
53
|
+
thor (>= 0.14.0)
|
54
|
+
arel (9.0.0)
|
55
|
+
ast (2.4.0)
|
56
|
+
builder (3.2.3)
|
57
|
+
byebug (10.0.2)
|
58
|
+
coderay (1.1.2)
|
59
|
+
concurrent-ruby (1.1.4)
|
60
|
+
crass (1.0.4)
|
61
|
+
erubi (1.8.0)
|
62
|
+
globalid (0.4.2)
|
63
|
+
activesupport (>= 4.2.0)
|
64
|
+
i18n (1.5.3)
|
65
|
+
concurrent-ruby (~> 1.0)
|
66
|
+
jaro_winkler (1.5.2)
|
67
|
+
loofah (2.2.3)
|
68
|
+
crass (~> 1.0.2)
|
69
|
+
nokogiri (>= 1.5.9)
|
70
|
+
m (1.5.1)
|
71
|
+
method_source (>= 0.6.7)
|
72
|
+
rake (>= 0.9.2.2)
|
73
|
+
mail (2.7.1)
|
74
|
+
mini_mime (>= 0.1.1)
|
75
|
+
marcel (0.3.3)
|
76
|
+
mimemagic (~> 0.3.2)
|
77
|
+
metaclass (0.0.4)
|
78
|
+
method_source (0.9.2)
|
79
|
+
mimemagic (0.3.3)
|
80
|
+
mini_mime (1.0.1)
|
81
|
+
mini_portile2 (2.4.0)
|
82
|
+
minitest (5.11.3)
|
83
|
+
mocha (1.8.0)
|
84
|
+
metaclass (~> 0.0.1)
|
85
|
+
nio4r (2.3.1)
|
86
|
+
nokogiri (1.10.1)
|
87
|
+
mini_portile2 (~> 2.4.0)
|
88
|
+
parallel (1.14.0)
|
89
|
+
parser (2.6.0.0)
|
90
|
+
ast (~> 2.4.0)
|
91
|
+
power_assert (1.1.3)
|
92
|
+
powerpack (0.1.2)
|
93
|
+
pry (0.12.2)
|
94
|
+
coderay (~> 1.1.0)
|
95
|
+
method_source (~> 0.9.0)
|
96
|
+
pry-byebug (3.6.0)
|
97
|
+
byebug (~> 10.0)
|
98
|
+
pry (~> 0.10)
|
99
|
+
psych (3.1.0)
|
100
|
+
rack (2.0.6)
|
101
|
+
rack-test (1.1.0)
|
102
|
+
rack (>= 1.0, < 3)
|
103
|
+
rails (5.2.2)
|
104
|
+
actioncable (= 5.2.2)
|
105
|
+
actionmailer (= 5.2.2)
|
106
|
+
actionpack (= 5.2.2)
|
107
|
+
actionview (= 5.2.2)
|
108
|
+
activejob (= 5.2.2)
|
109
|
+
activemodel (= 5.2.2)
|
110
|
+
activerecord (= 5.2.2)
|
111
|
+
activestorage (= 5.2.2)
|
112
|
+
activesupport (= 5.2.2)
|
113
|
+
bundler (>= 1.3.0)
|
114
|
+
railties (= 5.2.2)
|
115
|
+
sprockets-rails (>= 2.0.0)
|
116
|
+
rails-dom-testing (2.0.3)
|
117
|
+
activesupport (>= 4.2.0)
|
118
|
+
nokogiri (>= 1.6)
|
119
|
+
rails-html-sanitizer (1.0.4)
|
120
|
+
loofah (~> 2.2, >= 2.2.2)
|
121
|
+
railties (5.2.2)
|
122
|
+
actionpack (= 5.2.2)
|
123
|
+
activesupport (= 5.2.2)
|
124
|
+
method_source
|
125
|
+
rake (>= 0.8.7)
|
126
|
+
thor (>= 0.19.0, < 2.0)
|
127
|
+
rainbow (3.0.0)
|
128
|
+
rake (12.3.2)
|
129
|
+
rubocop (0.65.0)
|
130
|
+
jaro_winkler (~> 1.5.1)
|
131
|
+
parallel (~> 1.10)
|
132
|
+
parser (>= 2.5, != 2.5.1.1)
|
133
|
+
powerpack (~> 0.1)
|
134
|
+
psych (>= 3.1.0)
|
135
|
+
rainbow (>= 2.2.2, < 4.0)
|
136
|
+
ruby-progressbar (~> 1.7)
|
137
|
+
unicode-display_width (~> 1.4.0)
|
138
|
+
ruby-progressbar (1.10.0)
|
139
|
+
snowglobe (0.1.0)
|
140
|
+
sprockets (3.7.2)
|
141
|
+
concurrent-ruby (~> 1.0)
|
142
|
+
rack (> 1, < 3)
|
143
|
+
sprockets-rails (3.2.1)
|
144
|
+
actionpack (>= 4.0)
|
145
|
+
activesupport (>= 4.0)
|
146
|
+
sprockets (>= 3.0.0)
|
147
|
+
sqlite3 (1.3.13)
|
148
|
+
test-unit (3.3.0)
|
149
|
+
power_assert
|
150
|
+
thor (0.20.3)
|
151
|
+
thread_safe (0.3.6)
|
152
|
+
tzinfo (1.2.5)
|
153
|
+
thread_safe (~> 0.1)
|
154
|
+
unicode-display_width (1.4.1)
|
155
|
+
websocket-driver (0.7.0)
|
156
|
+
websocket-extensions (>= 0.1.0)
|
157
|
+
websocket-extensions (0.1.3)
|
158
|
+
|
159
|
+
PLATFORMS
|
160
|
+
ruby
|
161
|
+
|
162
|
+
DEPENDENCIES
|
163
|
+
appraisal
|
164
|
+
bundler (~> 1.0)
|
165
|
+
m
|
166
|
+
minitest
|
167
|
+
mocha
|
168
|
+
pry-byebug
|
169
|
+
rails (~> 5.2.0)
|
170
|
+
rake
|
171
|
+
rubocop
|
172
|
+
shoulda-context!
|
173
|
+
snowglobe
|
174
|
+
sqlite3 (~> 1.3.6)
|
175
|
+
test-unit
|
176
|
+
|
177
|
+
BUNDLED WITH
|
178
|
+
1.17.3
|