given_core 3.5.3 → 3.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +12 -12
- data/README.md +4 -0
- data/lib/given/rspec/framework.rb +14 -2
- data/lib/given/version.rb +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: 70fc39f83d5d6d16bb421d3a0bb16325f9a56742
|
4
|
+
data.tar.gz: 48e881d871a66d7ec8d09ce0c1b828f510c0ec68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c66338da0dcfdea9e072ff90efc9f3245195aa332d67033ea53ef9d4c31b6b726a8e4cb8c89708cd465cb959674913f4e63de4df6684e6e06dabf26de0dbc2e1
|
7
|
+
data.tar.gz: 6e315a02c39a20c772ba2654a609488b04fa4913c4e02c8467610f07e8c469a37683b08c7dfc54d2810476eed462d5187ddb50cdbae086f8f3c28448d128e18d
|
data/Gemfile.lock
CHANGED
@@ -4,18 +4,18 @@ GEM
|
|
4
4
|
diff-lcs (1.2.5)
|
5
5
|
minitest (4.3.2)
|
6
6
|
rake (0.9.6)
|
7
|
-
rspec (3.0.0.
|
8
|
-
rspec-core (= 3.0.0.
|
9
|
-
rspec-expectations (= 3.0.0.
|
10
|
-
rspec-mocks (= 3.0.0.
|
11
|
-
rspec-core (3.0.0.
|
12
|
-
rspec-support (= 3.0.0.
|
13
|
-
rspec-expectations (3.0.0.
|
14
|
-
diff-lcs (>= 1.
|
15
|
-
rspec-support (= 3.0.0.
|
16
|
-
rspec-mocks (3.0.0.
|
17
|
-
rspec-support (= 3.0.0.
|
18
|
-
rspec-support (3.0.0.
|
7
|
+
rspec (3.0.0.beta2)
|
8
|
+
rspec-core (= 3.0.0.beta2)
|
9
|
+
rspec-expectations (= 3.0.0.beta2)
|
10
|
+
rspec-mocks (= 3.0.0.beta2)
|
11
|
+
rspec-core (3.0.0.beta2)
|
12
|
+
rspec-support (= 3.0.0.beta2)
|
13
|
+
rspec-expectations (3.0.0.beta2)
|
14
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
15
|
+
rspec-support (= 3.0.0.beta2)
|
16
|
+
rspec-mocks (3.0.0.beta2)
|
17
|
+
rspec-support (= 3.0.0.beta2)
|
18
|
+
rspec-support (3.0.0.beta2)
|
19
19
|
sorcerer (1.0.2)
|
20
20
|
|
21
21
|
PLATFORMS
|
data/README.md
CHANGED
@@ -870,6 +870,10 @@ License. See the MIT-LICENSE file in the source distribution.
|
|
870
870
|
|
871
871
|
# History
|
872
872
|
|
873
|
+
* Version 3.5.4
|
874
|
+
|
875
|
+
* Accommodate the name change on RSpec's Pending exception.
|
876
|
+
|
873
877
|
* Version 3.5.3
|
874
878
|
|
875
879
|
* source_caching_disabled now hard defaults to false, rather than
|
@@ -24,8 +24,20 @@ module RSpec
|
|
24
24
|
::RSpec::Expectations.fail_with(*args)
|
25
25
|
end
|
26
26
|
|
27
|
-
|
28
|
-
|
27
|
+
# Use the RSpec pending error if we can find it.
|
28
|
+
if defined?(RSpec::Core::Pending::PendingDeclaredInExample)
|
29
|
+
def pending_error
|
30
|
+
RSpec::Core::Pending::PendingDeclaredInExample
|
31
|
+
end
|
32
|
+
elsif defined?(RSpec::Core::Pending::SkipDeclaredInExample)
|
33
|
+
def pending_error
|
34
|
+
RSpec::Core::Pending::SkipDeclaredInExample
|
35
|
+
end
|
36
|
+
else
|
37
|
+
PendingError = Class.new(StandardError)
|
38
|
+
def pending_error
|
39
|
+
PendingError
|
40
|
+
end
|
29
41
|
end
|
30
42
|
end
|
31
43
|
end
|
data/lib/given/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: given_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jim Weirich
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sorcerer
|