rspec-cells 0.2.3 → 0.2.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: be6ff1726d39b573f59093641820d2c626f2f2ac
4
- data.tar.gz: 76d1758c2147f22106519046d41325c9f87da0cc
3
+ metadata.gz: 3c8733ae3469683a588166e7bb8f0e24758dd470
4
+ data.tar.gz: 597e81d72fdcc89b20b0e252219cadf6de0971a1
5
5
  SHA512:
6
- metadata.gz: e215493c6046f9ed2bdb10f24830e82e91acf5d05a504bb1f0f5525eaa1447fa417440fb6b1a36bc8eb98a3c305379c99c17ddaedfca9c02bca5040c951d40fe
7
- data.tar.gz: bbc35d64c449bde79329164ab750e3d2896060037febe2d9115208f613a7ee87b74d928e4d240b653d96bafbf6e47b6d56fbe36216cc6323015a485de2a9a022
6
+ metadata.gz: e3cfb958af2295053d3d80562e00833a0f23edeabca70cd5e316a971009d0f1fb25a72602141591ba4a754842aed40a3c50d416b0a87c3ca40994a5b59f36cef
7
+ data.tar.gz: 0fa145a8582e43efac7d0012bf381366c4f493519704d4852cd5683080f6ec7bdfd51a5a338b4d5663803a200adf340c4106c8adb32e692d58ba3bf345849013
data/CHANGES.textile CHANGED
@@ -1,3 +1,9 @@
1
+ h2. 0.2.4
2
+
3
+ * Fix Rspec 3.3 fixture support.
4
+
5
+ h2. 0.2.3
6
+
1
7
  h2. 0.2.2
2
8
 
3
9
  * Allow using `cell.stub(..)` with capybara.
data/lib/rspec/cells.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  require 'cell/test_case'
2
2
  require 'rspec/core'
3
3
  require 'rspec/rails/adapters'
4
+ require 'rspec/rails/fixture_support'
4
5
  require 'rspec/rails/example/rails_example_group'
5
6
  require 'rspec/cells/cell_example_group'
6
7
  require 'rspec/cells/caching'
@@ -1,6 +1,6 @@
1
1
  module RSpec
2
2
  module Cells
3
- VERSION = '0.2.3'
3
+ VERSION = '0.2.4'
4
4
  end
5
5
  end
6
6
 
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.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sutterer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-22 00:00:00.000000000 Z
11
+ date: 2015-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -112,4 +112,8 @@ rubygems_version: 2.2.2
112
112
  signing_key:
113
113
  specification_version: 4
114
114
  summary: Spec your cells.
115
- test_files: []
115
+ test_files:
116
+ - spec/cells/caching_spec.rb
117
+ - spec/cells/cell_generator_spec.rb
118
+ - spec/cells/cell_spec_spec.rb
119
+ - spec/spec_helper.rb