shoulda-matchers 3.1.3 → 4.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. checksums.yaml +4 -4
  2. data/.hound/ruby.yml +336 -316
  3. data/.python-version +1 -0
  4. data/.rubocop.yml +3 -1
  5. data/.travis.yml +7 -6
  6. data/Appraisals +76 -44
  7. data/CONTRIBUTING.md +137 -66
  8. data/Gemfile +5 -5
  9. data/Gemfile.lock +30 -35
  10. data/MAINTAINING.md +250 -0
  11. data/MIT-LICENSE +1 -1
  12. data/NEWS.md +176 -4
  13. data/README.md +138 -200
  14. data/Rakefile +7 -0
  15. data/bin/setup +190 -0
  16. data/doc_config/yard/templates/default/fulldoc/html/css/global.css +4 -0
  17. data/doc_config/yard/templates/default/fulldoc/html/full_list.erb +0 -6
  18. data/doc_config/yard/templates/default/fulldoc/html/js/app.js +0 -17
  19. data/doc_config/yard/templates/default/fulldoc/html/setup.rb +27 -0
  20. data/gemfiles/4.2.gemfile +21 -20
  21. data/gemfiles/4.2.gemfile.lock +143 -140
  22. data/gemfiles/5.0.gemfile +37 -0
  23. data/gemfiles/5.0.gemfile.lock +238 -0
  24. data/gemfiles/5.1.gemfile +38 -0
  25. data/gemfiles/5.1.gemfile.lock +254 -0
  26. data/gemfiles/5.2.gemfile +40 -0
  27. data/gemfiles/5.2.gemfile.lock +273 -0
  28. data/lib/shoulda/matchers/action_controller/callback_matcher.rb +18 -6
  29. data/lib/shoulda/matchers/action_controller/permit_matcher.rb +6 -1
  30. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +1 -1
  31. data/lib/shoulda/matchers/action_controller/route_matcher.rb +87 -27
  32. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +1 -0
  33. data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter.rb +0 -4
  34. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +5 -0
  35. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +5 -0
  36. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +26 -11
  37. data/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +39 -4
  38. data/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +116 -47
  39. data/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +127 -38
  40. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +55 -37
  41. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +30 -1
  42. data/lib/shoulda/matchers/active_model/validation_matcher.rb +11 -4
  43. data/lib/shoulda/matchers/active_model/validation_matcher/build_description.rb +11 -6
  44. data/lib/shoulda/matchers/active_record.rb +3 -0
  45. data/lib/shoulda/matchers/active_record/association_matcher.rb +172 -22
  46. data/lib/shoulda/matchers/active_record/association_matchers/join_table_matcher.rb +1 -1
  47. data/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +11 -6
  48. data/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +46 -0
  49. data/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +51 -0
  50. data/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +268 -38
  51. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +1 -1
  52. data/lib/shoulda/matchers/active_record/have_secure_token_matcher.rb +111 -0
  53. data/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +207 -79
  54. data/lib/shoulda/matchers/doublespeak/object_double.rb +5 -1
  55. data/lib/shoulda/matchers/independent/delegate_method_matcher.rb +100 -21
  56. data/lib/shoulda/matchers/rails_shim.rb +133 -52
  57. data/lib/shoulda/matchers/routing.rb +2 -2
  58. data/lib/shoulda/matchers/util.rb +23 -1
  59. data/lib/shoulda/matchers/util/word_wrap.rb +6 -2
  60. data/lib/shoulda/matchers/version.rb +1 -1
  61. data/script/install_gems_in_all_appraisals +3 -1
  62. data/script/run_all_tests +3 -1
  63. data/script/supported_ruby_versions +7 -0
  64. data/script/update_gem_in_all_appraisals +3 -1
  65. data/script/update_gems_in_all_appraisals +3 -1
  66. data/shoulda-matchers.gemspec +3 -3
  67. data/spec/acceptance/independent_matchers_spec.rb +2 -2
  68. data/spec/acceptance/multiple_libraries_integration_spec.rb +1 -1
  69. data/spec/acceptance/rails_integration_spec.rb +2 -2
  70. data/spec/spec_helper.rb +2 -3
  71. data/spec/support/acceptance/helpers.rb +2 -0
  72. data/spec/support/acceptance/helpers/command_helpers.rb +17 -4
  73. data/spec/support/acceptance/helpers/rails_migration_helpers.rb +21 -0
  74. data/spec/support/acceptance/helpers/step_helpers.rb +1 -1
  75. data/spec/support/tests/current_bundle.rb +3 -9
  76. data/spec/support/tests/filesystem.rb +2 -2
  77. data/spec/support/unit/attribute.rb +0 -2
  78. data/spec/support/unit/capture.rb +9 -3
  79. data/spec/support/unit/helpers/action_pack_versions.rb +22 -0
  80. data/spec/support/unit/helpers/active_model_versions.rb +4 -0
  81. data/spec/support/unit/helpers/active_record_versions.rb +22 -2
  82. data/spec/support/unit/helpers/active_resource_builder.rb +2 -2
  83. data/spec/support/unit/helpers/controller_builder.rb +1 -1
  84. data/spec/support/unit/helpers/message_helpers.rb +19 -0
  85. data/spec/support/unit/helpers/rails_versions.rb +14 -0
  86. data/spec/support/unit/matchers/fail_with_message_matcher.rb +7 -5
  87. data/spec/support/unit/matchers/print_warning_including.rb +21 -13
  88. data/spec/support/unit/model_creation_strategies/active_record.rb +1 -1
  89. data/spec/support/unit/model_creators/active_record.rb +0 -1
  90. data/spec/support/unit/model_creators/basic.rb +7 -2
  91. data/spec/support/unit/rails_application.rb +25 -0
  92. data/spec/support/unit/record_validating_confirmation_builder.rb +5 -2
  93. data/spec/support/unit/validation_matcher_scenario.rb +0 -2
  94. data/spec/unit/shoulda/matchers/action_controller/callback_matcher_spec.rb +18 -18
  95. data/spec/unit/shoulda/matchers/action_controller/permit_matcher_spec.rb +33 -5
  96. data/spec/unit/shoulda/matchers/action_controller/render_template_matcher_spec.rb +1 -1
  97. data/spec/unit/shoulda/matchers/active_model/allow_mass_assignment_of_matcher_spec.rb +80 -78
  98. data/spec/unit/shoulda/matchers/active_model/allow_value_matcher_spec.rb +7 -9
  99. data/spec/unit/shoulda/matchers/active_model/validate_absence_of_matcher_spec.rb +28 -4
  100. data/spec/unit/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +19 -1
  101. data/spec/unit/shoulda/matchers/active_model/validate_confirmation_of_matcher_spec.rb +27 -4
  102. data/spec/unit/shoulda/matchers/active_model/validate_exclusion_of_matcher_spec.rb +62 -5
  103. data/spec/unit/shoulda/matchers/active_model/validate_inclusion_of_matcher_spec.rb +52 -18
  104. data/spec/unit/shoulda/matchers/active_model/validate_length_of_matcher_spec.rb +51 -4
  105. data/spec/unit/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +99 -71
  106. data/spec/unit/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +41 -15
  107. data/spec/unit/shoulda/matchers/active_record/association_matcher_spec.rb +445 -15
  108. data/spec/unit/shoulda/matchers/active_record/define_enum_for_matcher_spec.rb +615 -93
  109. data/spec/unit/shoulda/matchers/active_record/have_secure_token_matcher_spec.rb +169 -0
  110. data/spec/unit/shoulda/matchers/active_record/validate_uniqueness_of_matcher_spec.rb +167 -97
  111. data/spec/unit/shoulda/matchers/doublespeak/world_spec.rb +2 -4
  112. data/spec/unit/shoulda/matchers/independent/delegate_method_matcher_spec.rb +152 -19
  113. data/spec/unit/shoulda/matchers/routing/route_matcher_spec.rb +258 -94
  114. data/spec/unit_spec_helper.rb +9 -1
  115. data/zeus.json +1 -1
  116. metadata +31 -16
  117. data/gemfiles/4.0.0.gemfile +0 -38
  118. data/gemfiles/4.0.0.gemfile.lock +0 -223
  119. data/gemfiles/4.0.1.gemfile +0 -38
  120. data/gemfiles/4.0.1.gemfile.lock +0 -225
  121. data/gemfiles/4.1.gemfile +0 -38
  122. data/gemfiles/4.1.gemfile.lock +0 -220
  123. data/script/SUPPORTED_VERSIONS +0 -1
@@ -0,0 +1,37 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "2.2.0"
6
+ gem "bundler", "~> 1.1"
7
+ gem "pry"
8
+ gem "pry-byebug"
9
+ gem "rake", "12.3.0"
10
+ gem "rspec", "~> 3.6"
11
+ gem "zeus", require: false
12
+ gem "yard"
13
+ gem "redcarpet"
14
+ gem "pygments.rb"
15
+ gem "fssm"
16
+ gem "activerecord-jdbc-adapter", platform: :jruby
17
+ gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
18
+ gem "jdbc-sqlite3", platform: :jruby
19
+ gem "jruby-openssl", platform: :jruby
20
+ gem "therubyrhino", platform: :jruby
21
+ gem "sqlite3", platform: :ruby
22
+ gem "pg", platform: :ruby
23
+ gem "spring"
24
+ gem "spring-commands-rspec"
25
+ gem "minitest-reporters"
26
+ gem "rspec-rails", "~> 3.6"
27
+ gem "shoulda-context", "~> 1.2.0"
28
+ gem "rails", "~> 5.0.6"
29
+ gem "rails-controller-testing", ">= 1.0.1"
30
+ gem "puma", "~> 3.0"
31
+ gem "sass-rails", "~> 5.0"
32
+ gem "jquery-rails"
33
+ gem "turbolinks", "~> 5"
34
+ gem "jbuilder", "~> 2.5"
35
+ gem "bcrypt", "~> 3.1.7"
36
+ gem "listen", "~> 3.0.5"
37
+ gem "spring-watcher-listen", "~> 2.0.0"
@@ -0,0 +1,238 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ actioncable (5.0.6)
5
+ actionpack (= 5.0.6)
6
+ nio4r (>= 1.2, < 3.0)
7
+ websocket-driver (~> 0.6.1)
8
+ actionmailer (5.0.6)
9
+ actionpack (= 5.0.6)
10
+ actionview (= 5.0.6)
11
+ activejob (= 5.0.6)
12
+ mail (~> 2.5, >= 2.5.4)
13
+ rails-dom-testing (~> 2.0)
14
+ actionpack (5.0.6)
15
+ actionview (= 5.0.6)
16
+ activesupport (= 5.0.6)
17
+ rack (~> 2.0)
18
+ rack-test (~> 0.6.3)
19
+ rails-dom-testing (~> 2.0)
20
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
21
+ actionview (5.0.6)
22
+ activesupport (= 5.0.6)
23
+ builder (~> 3.1)
24
+ erubis (~> 2.7.0)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
27
+ activejob (5.0.6)
28
+ activesupport (= 5.0.6)
29
+ globalid (>= 0.3.6)
30
+ activemodel (5.0.6)
31
+ activesupport (= 5.0.6)
32
+ activerecord (5.0.6)
33
+ activemodel (= 5.0.6)
34
+ activesupport (= 5.0.6)
35
+ arel (~> 7.0)
36
+ activesupport (5.0.6)
37
+ concurrent-ruby (~> 1.0, >= 1.0.2)
38
+ i18n (~> 0.7)
39
+ minitest (~> 5.1)
40
+ tzinfo (~> 1.1)
41
+ ansi (1.5.0)
42
+ appraisal (2.2.0)
43
+ bundler
44
+ rake
45
+ thor (>= 0.14.0)
46
+ arel (7.1.4)
47
+ bcrypt (3.1.11)
48
+ builder (3.2.3)
49
+ byebug (9.1.0)
50
+ coderay (1.1.2)
51
+ concurrent-ruby (1.0.5)
52
+ crass (1.0.2)
53
+ diff-lcs (1.3)
54
+ erubis (2.7.0)
55
+ ffi (1.9.18)
56
+ fssm (0.2.10)
57
+ globalid (0.4.0)
58
+ activesupport (>= 4.2.0)
59
+ i18n (0.8.6)
60
+ jbuilder (2.7.0)
61
+ activesupport (>= 4.2.0)
62
+ multi_json (>= 1.2)
63
+ jquery-rails (4.3.1)
64
+ rails-dom-testing (>= 1, < 3)
65
+ railties (>= 4.2.0)
66
+ thor (>= 0.14, < 2.0)
67
+ listen (3.0.8)
68
+ rb-fsevent (~> 0.9, >= 0.9.4)
69
+ rb-inotify (~> 0.9, >= 0.9.7)
70
+ loofah (2.1.1)
71
+ crass (~> 1.0.2)
72
+ nokogiri (>= 1.5.9)
73
+ mail (2.6.6)
74
+ mime-types (>= 1.16, < 4)
75
+ method_source (0.9.0)
76
+ mime-types (3.1)
77
+ mime-types-data (~> 3.2015)
78
+ mime-types-data (3.2016.0521)
79
+ mini_portile2 (2.3.0)
80
+ minitest (5.10.3)
81
+ minitest-reporters (1.1.14)
82
+ ansi
83
+ builder
84
+ minitest (>= 5.0)
85
+ ruby-progressbar
86
+ multi_json (1.12.2)
87
+ nio4r (2.1.0)
88
+ nokogiri (1.8.1)
89
+ mini_portile2 (~> 2.3.0)
90
+ pg (0.21.0)
91
+ pry (0.11.3)
92
+ coderay (~> 1.1.0)
93
+ method_source (~> 0.9.0)
94
+ pry-byebug (3.5.1)
95
+ byebug (~> 9.1)
96
+ pry (~> 0.10)
97
+ puma (3.10.0)
98
+ pygments.rb (1.1.2)
99
+ multi_json (>= 1.0.0)
100
+ rack (2.0.3)
101
+ rack-test (0.6.3)
102
+ rack (>= 1.0)
103
+ rails (5.0.6)
104
+ actioncable (= 5.0.6)
105
+ actionmailer (= 5.0.6)
106
+ actionpack (= 5.0.6)
107
+ actionview (= 5.0.6)
108
+ activejob (= 5.0.6)
109
+ activemodel (= 5.0.6)
110
+ activerecord (= 5.0.6)
111
+ activesupport (= 5.0.6)
112
+ bundler (>= 1.3.0)
113
+ railties (= 5.0.6)
114
+ sprockets-rails (>= 2.0.0)
115
+ rails-controller-testing (1.0.1)
116
+ actionpack (~> 5.x)
117
+ actionview (~> 5.x)
118
+ activesupport (~> 5.x)
119
+ rails-dom-testing (2.0.3)
120
+ activesupport (>= 4.2.0)
121
+ nokogiri (>= 1.6)
122
+ rails-html-sanitizer (1.0.3)
123
+ loofah (~> 2.0)
124
+ railties (5.0.6)
125
+ actionpack (= 5.0.6)
126
+ activesupport (= 5.0.6)
127
+ method_source
128
+ rake (>= 0.8.7)
129
+ thor (>= 0.18.1, < 2.0)
130
+ rake (12.3.0)
131
+ rb-fsevent (0.10.2)
132
+ rb-inotify (0.9.10)
133
+ ffi (>= 0.5.0, < 2)
134
+ redcarpet (3.4.0)
135
+ rspec (3.6.0)
136
+ rspec-core (~> 3.6.0)
137
+ rspec-expectations (~> 3.6.0)
138
+ rspec-mocks (~> 3.6.0)
139
+ rspec-core (3.6.0)
140
+ rspec-support (~> 3.6.0)
141
+ rspec-expectations (3.6.0)
142
+ diff-lcs (>= 1.2.0, < 2.0)
143
+ rspec-support (~> 3.6.0)
144
+ rspec-mocks (3.6.0)
145
+ diff-lcs (>= 1.2.0, < 2.0)
146
+ rspec-support (~> 3.6.0)
147
+ rspec-rails (3.6.1)
148
+ actionpack (>= 3.0)
149
+ activesupport (>= 3.0)
150
+ railties (>= 3.0)
151
+ rspec-core (~> 3.6.0)
152
+ rspec-expectations (~> 3.6.0)
153
+ rspec-mocks (~> 3.6.0)
154
+ rspec-support (~> 3.6.0)
155
+ rspec-support (3.6.0)
156
+ ruby-progressbar (1.8.1)
157
+ sass (3.5.2)
158
+ sass-listen (~> 4.0.0)
159
+ sass-listen (4.0.0)
160
+ rb-fsevent (~> 0.9, >= 0.9.4)
161
+ rb-inotify (~> 0.9, >= 0.9.7)
162
+ sass-rails (5.0.6)
163
+ railties (>= 4.0.0, < 6)
164
+ sass (~> 3.1)
165
+ sprockets (>= 2.8, < 4.0)
166
+ sprockets-rails (>= 2.0, < 4.0)
167
+ tilt (>= 1.1, < 3)
168
+ shoulda-context (1.2.2)
169
+ spring (2.0.2)
170
+ activesupport (>= 4.2)
171
+ spring-commands-rspec (1.0.4)
172
+ spring (>= 0.9.1)
173
+ spring-watcher-listen (2.0.1)
174
+ listen (>= 2.7, < 4.0)
175
+ spring (>= 1.2, < 3.0)
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
+ sqlite3 (1.3.13)
184
+ thor (0.20.0)
185
+ thread_safe (0.3.6)
186
+ tilt (2.0.8)
187
+ turbolinks (5.0.1)
188
+ turbolinks-source (~> 5)
189
+ turbolinks-source (5.0.3)
190
+ tzinfo (1.2.3)
191
+ thread_safe (~> 0.1)
192
+ websocket-driver (0.6.5)
193
+ websocket-extensions (>= 0.1.0)
194
+ websocket-extensions (0.1.2)
195
+ yard (0.9.9)
196
+ zeus (0.15.14)
197
+ method_source (>= 0.6.7)
198
+
199
+ PLATFORMS
200
+ ruby
201
+
202
+ DEPENDENCIES
203
+ activerecord-jdbc-adapter
204
+ activerecord-jdbcsqlite3-adapter
205
+ appraisal (= 2.2.0)
206
+ bcrypt (~> 3.1.7)
207
+ bundler (~> 1.1)
208
+ fssm
209
+ jbuilder (~> 2.5)
210
+ jdbc-sqlite3
211
+ jquery-rails
212
+ jruby-openssl
213
+ listen (~> 3.0.5)
214
+ minitest-reporters
215
+ pg
216
+ pry
217
+ pry-byebug
218
+ puma (~> 3.0)
219
+ pygments.rb
220
+ rails (~> 5.0.6)
221
+ rails-controller-testing (>= 1.0.1)
222
+ rake (= 12.3.0)
223
+ redcarpet
224
+ rspec (~> 3.6)
225
+ rspec-rails (~> 3.6)
226
+ sass-rails (~> 5.0)
227
+ shoulda-context (~> 1.2.0)
228
+ spring
229
+ spring-commands-rspec
230
+ spring-watcher-listen (~> 2.0.0)
231
+ sqlite3
232
+ therubyrhino
233
+ turbolinks (~> 5)
234
+ yard
235
+ zeus
236
+
237
+ BUNDLED WITH
238
+ 1.16.1
@@ -0,0 +1,38 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "2.2.0"
6
+ gem "bundler", "~> 1.1"
7
+ gem "pry"
8
+ gem "pry-byebug"
9
+ gem "rake", "12.3.0"
10
+ gem "rspec", "~> 3.6"
11
+ gem "zeus", require: false
12
+ gem "yard"
13
+ gem "redcarpet"
14
+ gem "pygments.rb"
15
+ gem "fssm"
16
+ gem "activerecord-jdbc-adapter", platform: :jruby
17
+ gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
18
+ gem "jdbc-sqlite3", platform: :jruby
19
+ gem "jruby-openssl", platform: :jruby
20
+ gem "therubyrhino", platform: :jruby
21
+ gem "sqlite3", platform: :ruby
22
+ gem "pg", platform: :ruby
23
+ gem "spring"
24
+ gem "spring-commands-rspec"
25
+ gem "minitest-reporters"
26
+ gem "rspec-rails", "~> 3.6"
27
+ gem "shoulda-context", "~> 1.2.0"
28
+ gem "rails", "~> 5.1.6"
29
+ gem "rails-controller-testing", ">= 1.0.1"
30
+ gem "puma", "~> 3.7"
31
+ gem "sass-rails", "~> 5.0"
32
+ gem "turbolinks", "~> 5"
33
+ gem "jbuilder", "~> 2.5"
34
+ gem "bcrypt", "~> 3.1.7"
35
+ gem "capybara", "~> 2.13"
36
+ gem "selenium-webdriver"
37
+ gem "listen", ">= 3.0.5", "< 3.2"
38
+ gem "spring-watcher-listen", "~> 2.0.0"
@@ -0,0 +1,254 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ actioncable (5.1.6)
5
+ actionpack (= 5.1.6)
6
+ nio4r (~> 2.0)
7
+ websocket-driver (~> 0.6.1)
8
+ actionmailer (5.1.6)
9
+ actionpack (= 5.1.6)
10
+ actionview (= 5.1.6)
11
+ activejob (= 5.1.6)
12
+ mail (~> 2.5, >= 2.5.4)
13
+ rails-dom-testing (~> 2.0)
14
+ actionpack (5.1.6)
15
+ actionview (= 5.1.6)
16
+ activesupport (= 5.1.6)
17
+ rack (~> 2.0)
18
+ rack-test (>= 0.6.3)
19
+ rails-dom-testing (~> 2.0)
20
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
21
+ actionview (5.1.6)
22
+ activesupport (= 5.1.6)
23
+ builder (~> 3.1)
24
+ erubi (~> 1.4)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
27
+ activejob (5.1.6)
28
+ activesupport (= 5.1.6)
29
+ globalid (>= 0.3.6)
30
+ activemodel (5.1.6)
31
+ activesupport (= 5.1.6)
32
+ activerecord (5.1.6)
33
+ activemodel (= 5.1.6)
34
+ activesupport (= 5.1.6)
35
+ arel (~> 8.0)
36
+ activesupport (5.1.6)
37
+ concurrent-ruby (~> 1.0, >= 1.0.2)
38
+ i18n (>= 0.7, < 2)
39
+ minitest (~> 5.1)
40
+ tzinfo (~> 1.1)
41
+ addressable (2.5.2)
42
+ public_suffix (>= 2.0.2, < 4.0)
43
+ ansi (1.5.0)
44
+ appraisal (2.2.0)
45
+ bundler
46
+ rake
47
+ thor (>= 0.14.0)
48
+ arel (8.0.0)
49
+ bcrypt (3.1.12)
50
+ builder (3.2.3)
51
+ byebug (10.0.2)
52
+ capybara (2.18.0)
53
+ addressable
54
+ mini_mime (>= 0.1.3)
55
+ nokogiri (>= 1.3.3)
56
+ rack (>= 1.0.0)
57
+ rack-test (>= 0.5.4)
58
+ xpath (>= 2.0, < 4.0)
59
+ childprocess (0.9.0)
60
+ ffi (~> 1.0, >= 1.0.11)
61
+ coderay (1.1.2)
62
+ concurrent-ruby (1.0.5)
63
+ crass (1.0.4)
64
+ diff-lcs (1.3)
65
+ erubi (1.7.1)
66
+ ffi (1.9.25)
67
+ fssm (0.2.10)
68
+ globalid (0.4.1)
69
+ activesupport (>= 4.2.0)
70
+ i18n (1.1.0)
71
+ concurrent-ruby (~> 1.0)
72
+ jbuilder (2.7.0)
73
+ activesupport (>= 4.2.0)
74
+ multi_json (>= 1.2)
75
+ listen (3.1.5)
76
+ rb-fsevent (~> 0.9, >= 0.9.4)
77
+ rb-inotify (~> 0.9, >= 0.9.7)
78
+ ruby_dep (~> 1.2)
79
+ loofah (2.2.2)
80
+ crass (~> 1.0.2)
81
+ nokogiri (>= 1.5.9)
82
+ mail (2.7.0)
83
+ mini_mime (>= 0.1.1)
84
+ method_source (0.9.0)
85
+ mini_mime (1.0.1)
86
+ mini_portile2 (2.3.0)
87
+ minitest (5.11.3)
88
+ minitest-reporters (1.3.4)
89
+ ansi
90
+ builder
91
+ minitest (>= 5.0)
92
+ ruby-progressbar
93
+ multi_json (1.13.1)
94
+ nio4r (2.3.1)
95
+ nokogiri (1.8.4)
96
+ mini_portile2 (~> 2.3.0)
97
+ pg (1.1.3)
98
+ pry (0.11.3)
99
+ coderay (~> 1.1.0)
100
+ method_source (~> 0.9.0)
101
+ pry-byebug (3.6.0)
102
+ byebug (~> 10.0)
103
+ pry (~> 0.10)
104
+ public_suffix (3.0.3)
105
+ puma (3.12.0)
106
+ pygments.rb (1.2.1)
107
+ multi_json (>= 1.0.0)
108
+ rack (2.0.5)
109
+ rack-test (1.1.0)
110
+ rack (>= 1.0, < 3)
111
+ rails (5.1.6)
112
+ actioncable (= 5.1.6)
113
+ actionmailer (= 5.1.6)
114
+ actionpack (= 5.1.6)
115
+ actionview (= 5.1.6)
116
+ activejob (= 5.1.6)
117
+ activemodel (= 5.1.6)
118
+ activerecord (= 5.1.6)
119
+ activesupport (= 5.1.6)
120
+ bundler (>= 1.3.0)
121
+ railties (= 5.1.6)
122
+ sprockets-rails (>= 2.0.0)
123
+ rails-controller-testing (1.0.2)
124
+ actionpack (~> 5.x, >= 5.0.1)
125
+ actionview (~> 5.x, >= 5.0.1)
126
+ activesupport (~> 5.x)
127
+ rails-dom-testing (2.0.3)
128
+ activesupport (>= 4.2.0)
129
+ nokogiri (>= 1.6)
130
+ rails-html-sanitizer (1.0.4)
131
+ loofah (~> 2.2, >= 2.2.2)
132
+ railties (5.1.6)
133
+ actionpack (= 5.1.6)
134
+ activesupport (= 5.1.6)
135
+ method_source
136
+ rake (>= 0.8.7)
137
+ thor (>= 0.18.1, < 2.0)
138
+ rake (12.3.0)
139
+ rb-fsevent (0.10.3)
140
+ rb-inotify (0.9.10)
141
+ ffi (>= 0.5.0, < 2)
142
+ redcarpet (3.4.0)
143
+ rspec (3.8.0)
144
+ rspec-core (~> 3.8.0)
145
+ rspec-expectations (~> 3.8.0)
146
+ rspec-mocks (~> 3.8.0)
147
+ rspec-core (3.8.0)
148
+ rspec-support (~> 3.8.0)
149
+ rspec-expectations (3.8.1)
150
+ diff-lcs (>= 1.2.0, < 2.0)
151
+ rspec-support (~> 3.8.0)
152
+ rspec-mocks (3.8.0)
153
+ diff-lcs (>= 1.2.0, < 2.0)
154
+ rspec-support (~> 3.8.0)
155
+ rspec-rails (3.8.0)
156
+ actionpack (>= 3.0)
157
+ activesupport (>= 3.0)
158
+ railties (>= 3.0)
159
+ rspec-core (~> 3.8.0)
160
+ rspec-expectations (~> 3.8.0)
161
+ rspec-mocks (~> 3.8.0)
162
+ rspec-support (~> 3.8.0)
163
+ rspec-support (3.8.0)
164
+ ruby-progressbar (1.10.0)
165
+ ruby_dep (1.5.0)
166
+ rubyzip (1.2.2)
167
+ sass (3.5.7)
168
+ sass-listen (~> 4.0.0)
169
+ sass-listen (4.0.0)
170
+ rb-fsevent (~> 0.9, >= 0.9.4)
171
+ rb-inotify (~> 0.9, >= 0.9.7)
172
+ sass-rails (5.0.7)
173
+ railties (>= 4.0.0, < 6)
174
+ sass (~> 3.1)
175
+ sprockets (>= 2.8, < 4.0)
176
+ sprockets-rails (>= 2.0, < 4.0)
177
+ tilt (>= 1.1, < 3)
178
+ selenium-webdriver (3.14.0)
179
+ childprocess (~> 0.5)
180
+ rubyzip (~> 1.2)
181
+ shoulda-context (1.2.2)
182
+ spring (2.0.2)
183
+ activesupport (>= 4.2)
184
+ spring-commands-rspec (1.0.4)
185
+ spring (>= 0.9.1)
186
+ spring-watcher-listen (2.0.1)
187
+ listen (>= 2.7, < 4.0)
188
+ spring (>= 1.2, < 3.0)
189
+ sprockets (3.7.2)
190
+ concurrent-ruby (~> 1.0)
191
+ rack (> 1, < 3)
192
+ sprockets-rails (3.2.1)
193
+ actionpack (>= 4.0)
194
+ activesupport (>= 4.0)
195
+ sprockets (>= 3.0.0)
196
+ sqlite3 (1.3.13)
197
+ thor (0.20.0)
198
+ thread_safe (0.3.6)
199
+ tilt (2.0.8)
200
+ turbolinks (5.2.0)
201
+ turbolinks-source (~> 5.2)
202
+ turbolinks-source (5.2.0)
203
+ tzinfo (1.2.5)
204
+ thread_safe (~> 0.1)
205
+ websocket-driver (0.6.5)
206
+ websocket-extensions (>= 0.1.0)
207
+ websocket-extensions (0.1.3)
208
+ xpath (3.1.0)
209
+ nokogiri (~> 1.8)
210
+ yard (0.9.16)
211
+ zeus (0.15.14)
212
+ method_source (>= 0.6.7)
213
+
214
+ PLATFORMS
215
+ ruby
216
+
217
+ DEPENDENCIES
218
+ activerecord-jdbc-adapter
219
+ activerecord-jdbcsqlite3-adapter
220
+ appraisal (= 2.2.0)
221
+ bcrypt (~> 3.1.7)
222
+ bundler (~> 1.1)
223
+ capybara (~> 2.13)
224
+ fssm
225
+ jbuilder (~> 2.5)
226
+ jdbc-sqlite3
227
+ jruby-openssl
228
+ listen (>= 3.0.5, < 3.2)
229
+ minitest-reporters
230
+ pg
231
+ pry
232
+ pry-byebug
233
+ puma (~> 3.7)
234
+ pygments.rb
235
+ rails (~> 5.1.6)
236
+ rails-controller-testing (>= 1.0.1)
237
+ rake (= 12.3.0)
238
+ redcarpet
239
+ rspec (~> 3.6)
240
+ rspec-rails (~> 3.6)
241
+ sass-rails (~> 5.0)
242
+ selenium-webdriver
243
+ shoulda-context (~> 1.2.0)
244
+ spring
245
+ spring-commands-rspec
246
+ spring-watcher-listen (~> 2.0.0)
247
+ sqlite3
248
+ therubyrhino
249
+ turbolinks (~> 5)
250
+ yard
251
+ zeus
252
+
253
+ BUNDLED WITH
254
+ 1.16.4