rspec-cells 0.2.2 → 0.2.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/README.rdoc +1 -3
- data/lib/rspec/cells/version.rb +1 -1
- data/rspec-cells.gemspec +1 -1
- metadata +10 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be6ff1726d39b573f59093641820d2c626f2f2ac
|
|
4
|
+
data.tar.gz: 76d1758c2147f22106519046d41325c9f87da0cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e215493c6046f9ed2bdb10f24830e82e91acf5d05a504bb1f0f5525eaa1447fa417440fb6b1a36bc8eb98a3c305379c99c17ddaedfca9c02bca5040c951d40fe
|
|
7
|
+
data.tar.gz: bbc35d64c449bde79329164ab750e3d2896060037febe2d9115208f613a7ee87b74d928e4d240b653d96bafbf6e47b6d56fbe36216cc6323015a485de2a9a022
|
data/README.rdoc
CHANGED
|
@@ -2,15 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
<em>Spec your Cells.</em>
|
|
4
4
|
|
|
5
|
-
{<img src="https://secure.travis-ci.org/apotonick/rspec-cells.png" />}[http://travis-ci.org/apotonick/rspec-cells]
|
|
6
|
-
|
|
7
5
|
This plugin allows you to test your cells easily using RSpec. Basically, it adds a cells example group with a <tt>#render_cell</tt> helper.
|
|
8
6
|
|
|
9
7
|
Cells is Rails' popular {view components framework}[http://github.com/apotonick/cells].
|
|
10
8
|
|
|
11
9
|
= Installation
|
|
12
10
|
|
|
13
|
-
This gem runs with RSpec2 and Rails >= 3.x, so just add it to your app's +Gemfile+.
|
|
11
|
+
This gem runs with RSpec2 and Rails >= 3.x, and Cells < 4, so just add it to your app's +Gemfile+.
|
|
14
12
|
|
|
15
13
|
group :development, :test do
|
|
16
14
|
gem "rspec-cells"
|
data/lib/rspec/cells/version.rb
CHANGED
data/rspec-cells.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-cells
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.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:
|
|
11
|
+
date: 2015-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -45,6 +45,9 @@ dependencies:
|
|
|
45
45
|
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: 3.4.0
|
|
48
|
+
- - "<"
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: '4.0'
|
|
48
51
|
type: :runtime
|
|
49
52
|
prerelease: false
|
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -52,6 +55,9 @@ dependencies:
|
|
|
52
55
|
- - ">="
|
|
53
56
|
- !ruby/object:Gem::Version
|
|
54
57
|
version: 3.4.0
|
|
58
|
+
- - "<"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '4.0'
|
|
55
61
|
description: Use render_cell in your specs.
|
|
56
62
|
email:
|
|
57
63
|
- apotonick@gmail.com
|
|
@@ -102,13 +108,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
102
108
|
version: '0'
|
|
103
109
|
requirements: []
|
|
104
110
|
rubyforge_project: rspec-cells
|
|
105
|
-
rubygems_version: 2.2.
|
|
111
|
+
rubygems_version: 2.2.2
|
|
106
112
|
signing_key:
|
|
107
113
|
specification_version: 4
|
|
108
114
|
summary: Spec your cells.
|
|
109
|
-
test_files:
|
|
110
|
-
- spec/cells/caching_spec.rb
|
|
111
|
-
- spec/cells/cell_generator_spec.rb
|
|
112
|
-
- spec/cells/cell_spec_spec.rb
|
|
113
|
-
- spec/spec_helper.rb
|
|
114
|
-
has_rdoc:
|
|
115
|
+
test_files: []
|