cells 3.11.2 → 3.11.3
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.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -0
- data/lib/cell/test_case.rb +6 -1
- data/lib/cells/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1733d66b3c4c59a504f758006fbc1a4391b04827
|
|
4
|
+
data.tar.gz: 2ba5c6cfba87ec5f9df760f15e2f40fc5a4db44d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66b45a320031b1d401a8a4714f4e31f6944d17302118b3343810f0533c4d588a76f08428d295bbd8811048d36c3a66817e915a958831c8f580d476c82225f689
|
|
7
|
+
data.tar.gz: c18f7d86f22a3d2e4fb5ac0671c0a1aa92ae467dfaaea2fbb9c7e0c8e5888fa20ffcf6673a27b93a95b67dd2d89f59c8ff4e880c4e0f575fa1279e0c257e753f
|
data/CHANGES.md
CHANGED
data/lib/cell/test_case.rb
CHANGED
|
@@ -138,7 +138,12 @@ module Cell
|
|
|
138
138
|
end
|
|
139
139
|
|
|
140
140
|
include TestMethods
|
|
141
|
-
|
|
141
|
+
# imports "their" #assert_select.
|
|
142
|
+
if ::Rails.const_defined?(:Dom)
|
|
143
|
+
include ::Rails::Dom::Testing::Assertions::SelectorAssertions
|
|
144
|
+
else
|
|
145
|
+
include ActionDispatch::Assertions::SelectorAssertions
|
|
146
|
+
end
|
|
142
147
|
alias_method :rails_assert_select, :assert_select # i hate that.
|
|
143
148
|
include AssertSelect
|
|
144
149
|
|
data/lib/cells/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cells
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.11.
|
|
4
|
+
version: 3.11.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Sutterer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionpack
|
|
@@ -372,7 +372,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
372
372
|
version: '0'
|
|
373
373
|
requirements: []
|
|
374
374
|
rubyforge_project:
|
|
375
|
-
rubygems_version: 2.2.
|
|
375
|
+
rubygems_version: 2.2.2
|
|
376
376
|
signing_key:
|
|
377
377
|
specification_version: 4
|
|
378
378
|
summary: View Components for Rails.
|
|
@@ -479,4 +479,3 @@ test_files:
|
|
|
479
479
|
- test/test_case_test.rb
|
|
480
480
|
- test/test_helper.rb
|
|
481
481
|
- test/twin_test.rb
|
|
482
|
-
has_rdoc:
|