eita-jrails 0.9.7 → 0.9.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/jrails/selector_assertions.rb +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20613f4c1876b587fc3793a6d04c8fb63130f3a8
|
4
|
+
data.tar.gz: d04aab7ff8ee7c5be2c0a8b657253eb2e151e53e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 762fa79c93475085c597f4e698d887ae867e33fbe991b26fd9413c39c47f9a5551f9071664aa5e080860c22d93c79ce07939b37a7cd7474bc3426ed3a800864e
|
7
|
+
data.tar.gz: c1e55f831ec4c7779d3d0b6f40d08acb3f4979629bf5b56fd793c8a12deb413a5abefef2833a9a57cc015cf0924912f77feafa5b2a8035b89b627ef3f3bee633
|
@@ -1,3 +1,6 @@
|
|
1
|
+
# FIXME: support rails 4.2
|
2
|
+
if Rails::VERSION::STRING < "4.2.0"
|
3
|
+
|
1
4
|
require 'active_support/core_ext/module/aliasing'
|
2
5
|
if Rails::VERSION::STRING < "4.1.0"
|
3
6
|
require 'action_controller/vendor/html-scanner'
|
@@ -213,3 +216,5 @@ ActionDispatch::Assertions::SelectorAssertions.module_eval do
|
|
213
216
|
unescaped
|
214
217
|
end
|
215
218
|
end
|
219
|
+
|
220
|
+
end
|