rspec-set 0.1.2 → 0.1.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/CHANGELOG.md +6 -0
- data/lib/rspec-set.rb +3 -3
- data/lib/version.rb +2 -2
- data/rspec-set.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 378bfe878d834df657fc3f87b1b40692790ca35c
|
4
|
+
data.tar.gz: f34d75fc798442060f663eb1faa4c777db5b8aef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae2b168f4dad8b22865325e24c29a1f158fad4a31b140447f4c4b7d3afd45387de09d0c6c7b08e407c3a1b2db5f45a8d88b00510998dc85a927fa3b95c64a754
|
7
|
+
data.tar.gz: 4616f7daaad34d66422727dfcfca1acf3e19ea084cc26cd90ed611374eb81530871a8d8fbf79e49d402fc7d6fd4ec9569c7c5351d7371d1fd19cb2c78f220330
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# rspec-set CHANGELOG
|
2
2
|
|
3
|
+
## 0.1.3
|
4
|
+
|
5
|
+
* prevent name conflict by [@jdelStrother][] (PR [#6][])
|
6
|
+
*
|
3
7
|
## 0.1.2
|
4
8
|
|
5
9
|
* fix reload destroy models by [@pcreux][]
|
@@ -25,6 +29,8 @@
|
|
25
29
|
<!--- The following link definition list is generated by PimpMyChangelog --->
|
26
30
|
[#4]: https://github.com/pcreux/rspec-set/issues/4
|
27
31
|
[#5]: https://github.com/pcreux/rspec-set/issues/5
|
32
|
+
[#6]: https://github.com/pcreux/rspec-set/issues/6
|
28
33
|
[@21croissants]: https://github.com/21croissants
|
34
|
+
[@jdelStrother]: https://github.com/jdelStrother
|
29
35
|
[@loganhasson]: https://github.com/loganhasson
|
30
36
|
[@pcreux]: https://github.com/pcreux
|
data/lib/rspec-set.rb
CHANGED
@@ -2,7 +2,7 @@ require "version"
|
|
2
2
|
|
3
3
|
module RSpec
|
4
4
|
module Core
|
5
|
-
module
|
5
|
+
module RSpecSet
|
6
6
|
module ClassMethods
|
7
7
|
# Set @variable_name in a before(:all) block and give access to it
|
8
8
|
# via let(:variable_name)
|
@@ -47,10 +47,10 @@ module RSpec
|
|
47
47
|
def self.included(mod) # :nodoc:
|
48
48
|
mod.extend ClassMethods
|
49
49
|
end
|
50
|
-
end #
|
50
|
+
end # RSpecSet
|
51
51
|
|
52
52
|
class ExampleGroup
|
53
|
-
include
|
53
|
+
include RSpecSet
|
54
54
|
end # ExampleGroup
|
55
55
|
|
56
56
|
end # Core
|
data/lib/version.rb
CHANGED
data/rspec-set.gemspec
CHANGED
@@ -5,7 +5,7 @@ require 'version'
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "rspec-set"
|
8
|
-
spec.version = Rspec::
|
8
|
+
spec.version = Rspec::RSpecSet::VERSION
|
9
9
|
spec.authors = ["Philippe Creux"]
|
10
10
|
spec.email = ["pcreux@gmail.com"]
|
11
11
|
spec.description = "#set(), speed-up your specs"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-set
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Philippe Creux
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|