rspec-core 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +6 -14
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +1 -3
- data/Changelog.md +10 -0
- data/README.md +1 -1
- data/lib/rspec/core/configuration.rb +2 -2
- data/lib/rspec/core/example.rb +3 -1
- data/lib/rspec/core/example_group.rb +79 -2
- data/lib/rspec/core/version.rb +1 -1
- metadata +54 -61
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
MTI1OTczM2M4NDgxNjRiN2YyNDBkZDdhM2FiZmVhNGFjMmQ2NjA4OGMwMWNk
|
10
|
-
ODkwM2ZjZWI5ZmFkOTlmY2QzZGFmOTA3NDIwMjcxOGRjMjk5Mzg3YWJmNjE2
|
11
|
-
YzdkNTc2Y2IzMmQ0YzY0MmNmOTk5ZGNmNzZlNDc4ZGJmZWQ3YTU=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
NGJjMDgwMDZlNzQ0YTI3YmZkYjY5OGVjNDc4ZTFmYmUxMGYwMGFlYWY0MDlm
|
14
|
-
Mjg1ZGRkNTMzZGI2MTNhYWIxNmFlOGRlYThkYmZhOGM5N2FjNmQwM2Y2OTdm
|
15
|
-
ZWNlZTg3NmZhOTA3NWZjODRmNmQwMTA5NDkzNTM5MmMxMjY3YTM=
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3092c05455e9d13f8b3210dbd2639f924247d702
|
4
|
+
data.tar.gz: 4bce575854d38e0b31caa77ca2d7556a6f0a8158
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fcb2fe193cfd0fa78a4165457be57c998bb18626568bbe47744af259d86e75ee2312285eabbf7a0ee734b7ea94461e06a8fcf7412247c9dd78e9341eaf613a68
|
7
|
+
data.tar.gz: 1928429c6a01daf9e6b6ed9e30a0308e03590868ff7131b61c9d316dc12ed0a65544818bb99f80e2ae9a78a787d2ca92d2d5a07c278c611c4b2302bcce101064
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
@@ -1,3 +1 @@
|
|
1
|
-
|
2
|
-
A������c���
|
3
|
-
�;�Z˵�4�a�_��"�^ѦW���[R����\��rk���x�E>�-�я��z�f��)y֑q^c_��)!�4l5.�{�
|
1
|
+
y�ars���lL8<���^� W��*2 �V�9l�^��t��M�B�� ��:�}z��%����a?�\���i�v~�"P�B-{oi�\@x������?��R��*5Œ�L��R��3~��� Nj��������-.`���uq��V�d�6VSy��Ç��0�����D'��['!6�ѳ�{�
|
data/Changelog.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
### 3.0.1 / 2014-06-12
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0...v3.0.1)
|
3
|
+
|
4
|
+
Bug Fixes:
|
5
|
+
|
6
|
+
* Fix a couple ruby warnings caused by rspec-core when loaded.
|
7
|
+
(Prem Sichanugrist, #1584)
|
8
|
+
* Example groups named `Config` will no longer cause a Ruby warning to be
|
9
|
+
issued. (Jimmy Cuadra, #1580)
|
10
|
+
|
1
11
|
### 3.0.0 / 2014-06-01
|
2
12
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.rc1...v3.0.0)
|
3
13
|
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# rspec-core [![Build Status](https://secure.travis-ci.org/rspec/rspec-core.png?branch=master)](http://travis-ci.org/rspec/rspec-core) [![Code Climate](https://codeclimate.com/github/rspec/rspec-core.png)](https://codeclimate.com/github/rspec/rspec-core)
|
1
|
+
# rspec-core [![Build Status](https://secure.travis-ci.org/rspec/rspec-core.png?branch=master)](http://travis-ci.org/rspec/rspec-core) [![Code Climate](https://codeclimate.com/github/rspec/rspec-core.png)](https://codeclimate.com/github/rspec/rspec-core)
|
2
2
|
|
3
3
|
rspec-core provides the structure for writing executable examples of how your
|
4
4
|
code should behave, and an `rspec` command with tools to constrain which
|
@@ -182,9 +182,9 @@ module RSpec
|
|
182
182
|
end
|
183
183
|
end
|
184
184
|
|
185
|
-
# @macro
|
185
|
+
# @macro define_reader
|
186
186
|
# Load files matching this pattern (default: `'**/*_spec.rb'`)
|
187
|
-
|
187
|
+
define_reader :pattern
|
188
188
|
|
189
189
|
# Set pattern to match files to load
|
190
190
|
# @attr value [String] the filename pattern to filter spec files by
|
data/lib/rspec/core/example.rb
CHANGED
@@ -201,7 +201,9 @@ module RSpec
|
|
201
201
|
attr_reader :example
|
202
202
|
|
203
203
|
Example.public_instance_methods(false).each do |name|
|
204
|
-
|
204
|
+
unless name.to_sym == :run
|
205
|
+
define_method(name) { |*a, &b| @example.__send__(name, *a, &b) }
|
206
|
+
end
|
205
207
|
end
|
206
208
|
|
207
209
|
Proc.public_instance_methods(false).each do |name|
|
@@ -572,10 +572,87 @@ module RSpec
|
|
572
572
|
end
|
573
573
|
end
|
574
574
|
|
575
|
+
# Provides recursive constant lookup methods useful for
|
576
|
+
# constant stubbing.
|
577
|
+
# @private
|
578
|
+
module RecursiveConstMethods
|
579
|
+
# We only want to consider constants that are defined directly on a
|
580
|
+
# particular module, and not include top-level/inherited constants.
|
581
|
+
# Unfortunately, the constant API changed between 1.8 and 1.9, so
|
582
|
+
# we need to conditionally define methods to ignore the top-level/inherited
|
583
|
+
# constants.
|
584
|
+
#
|
585
|
+
# Given:
|
586
|
+
# class A; B = 1; end
|
587
|
+
# class C < A; end
|
588
|
+
#
|
589
|
+
# On 1.8:
|
590
|
+
# - C.const_get("Hash") # => ::Hash
|
591
|
+
# - C.const_defined?("Hash") # => false
|
592
|
+
# - C.constants # => ["B"]
|
593
|
+
# - None of these methods accept the extra `inherit` argument
|
594
|
+
# On 1.9:
|
595
|
+
# - C.const_get("Hash") # => ::Hash
|
596
|
+
# - C.const_defined?("Hash") # => true
|
597
|
+
# - C.const_get("Hash", false) # => raises NameError
|
598
|
+
# - C.const_defined?("Hash", false) # => false
|
599
|
+
# - C.constants # => [:B]
|
600
|
+
# - C.constants(false) #=> []
|
601
|
+
if Module.method(:const_defined?).arity == 1
|
602
|
+
def const_defined_on?(mod, const_name)
|
603
|
+
mod.const_defined?(const_name)
|
604
|
+
end
|
605
|
+
|
606
|
+
def get_const_defined_on(mod, const_name)
|
607
|
+
if const_defined_on?(mod, const_name)
|
608
|
+
return mod.const_get(const_name)
|
609
|
+
end
|
610
|
+
|
611
|
+
raise NameError, "uninitialized constant #{mod.name}::#{const_name}"
|
612
|
+
end
|
613
|
+
|
614
|
+
def constants_defined_on(mod)
|
615
|
+
mod.constants.select { |c| const_defined_on?(mod, c) }
|
616
|
+
end
|
617
|
+
else
|
618
|
+
def const_defined_on?(mod, const_name)
|
619
|
+
mod.const_defined?(const_name, false)
|
620
|
+
end
|
621
|
+
|
622
|
+
def get_const_defined_on(mod, const_name)
|
623
|
+
mod.const_get(const_name, false)
|
624
|
+
end
|
625
|
+
|
626
|
+
def constants_defined_on(mod)
|
627
|
+
mod.constants(false)
|
628
|
+
end
|
629
|
+
end
|
630
|
+
|
631
|
+
def recursive_const_get(const_name)
|
632
|
+
normalize_const_name(const_name).split('::').inject(Object) do |mod, name|
|
633
|
+
get_const_defined_on(mod, name)
|
634
|
+
end
|
635
|
+
end
|
636
|
+
|
637
|
+
def recursive_const_defined?(const_name)
|
638
|
+
normalize_const_name(const_name).split('::').inject([Object, '']) do |(mod, full_name), name|
|
639
|
+
yield(full_name, name) if block_given? && !(Module === mod)
|
640
|
+
return false unless const_defined_on?(mod, name)
|
641
|
+
[get_const_defined_on(mod, name), [mod, name].join('::')]
|
642
|
+
end
|
643
|
+
end
|
644
|
+
|
645
|
+
def normalize_const_name(const_name)
|
646
|
+
const_name.sub(/\A::/, '')
|
647
|
+
end
|
648
|
+
end
|
649
|
+
|
575
650
|
# @private
|
576
651
|
#
|
577
652
|
# Namespace for the example group subclasses generated by top-level `describe`.
|
578
653
|
module ExampleGroups
|
654
|
+
extend RecursiveConstMethods
|
655
|
+
|
579
656
|
def self.assign_const(group)
|
580
657
|
base_name = base_name_for(group)
|
581
658
|
const_scope = constant_scope_for(group)
|
@@ -608,11 +685,11 @@ module RSpec
|
|
608
685
|
end
|
609
686
|
|
610
687
|
def self.disambiguate(name, const_scope)
|
611
|
-
return name unless
|
688
|
+
return name unless const_defined_on?(const_scope, name)
|
612
689
|
|
613
690
|
# Add a trailing number if needed to disambiguate from an existing constant.
|
614
691
|
name << "_2"
|
615
|
-
name.next! while
|
692
|
+
name.next! while const_defined_on?(const_scope, name)
|
616
693
|
name
|
617
694
|
end
|
618
695
|
end
|
data/lib/rspec/core/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Baker
|
@@ -11,106 +11,99 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: exe
|
13
13
|
cert_chain:
|
14
|
-
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
RHNSZzZGbUtjcGdxQ3dOT21zVmlhZjBMUFNVSC9HWVEKM1Rlb3o4UUNhRGJE
|
39
|
-
N0FLc2ZmVDdlRHJuYkhuS3dlTzFYZGVtUkpDOTh1L3lZeG5Hek1TV0tFc24w
|
40
|
-
OWV0QmxaOQo3SDY3azVaM3VmNmNmTFpnVG9XTDZ6U2h6WlkzTnVuNXI3M1lz
|
41
|
-
TmYyL1FaT2U0VVplNHZmR3ZuNmJhdzUzeXM5CjF5SEMxQWNTWXB2aTJkQWJP
|
42
|
-
aUhUNWlRRitrcm00d3NlOEtjdFhnVE5uak1zSEVvR0t1bEpTMi9zWmw5MGpj
|
43
|
-
Q3oKbXVBPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
|
44
|
-
date: 2014-06-02 00:00:00.000000000 Z
|
14
|
+
- |
|
15
|
+
-----BEGIN CERTIFICATE-----
|
16
|
+
MIIDjjCCAnagAwIBAgIBATANBgkqhkiG9w0BAQUFADBGMRIwEAYDVQQDDAlyc3Bl
|
17
|
+
Yy1kZXYxGzAZBgoJkiaJk/IsZAEZFgtnb29nbGVnb3VwczETMBEGCgmSJomT8ixk
|
18
|
+
ARkWA2NvbTAeFw0xMzExMDcxOTQyNTlaFw0xNDExMDcxOTQyNTlaMEYxEjAQBgNV
|
19
|
+
BAMMCXJzcGVjLWRldjEbMBkGCgmSJomT8ixkARkWC2dvb2dsZWdvdXBzMRMwEQYK
|
20
|
+
CZImiZPyLGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
|
21
|
+
nhCeZouDLXWO55no+EdZNCtjXjfJQ1X9TbPcvBDD29OypIUce2h/VdKXB2gI7ZHs
|
22
|
+
F5NkPggslTErGFmWAtIiur7u943RVqHOsyoIsy065F9fCtrykkA+22elvTDha4Iz
|
23
|
+
RUCvuhQ3klatYk4jF+cGt1jNONNVdLOiy0bMynvcM7hoVQ2AomwGs+cEOWQ/4dkD
|
24
|
+
JcNV3qfzF5QBcTD2372XNM53b25nYVQSX2KH5FF7BhlKyov33bOm2gA9M+mWIujW
|
25
|
+
qgkyxVlfrlE+ZBgV3wXn1Cojg1LpTq35yOArgwioyrwwlZZJR9joN9s/nDklfr5A
|
26
|
+
+dyETjFc6cmEPWZrt2cJBQIDAQABo4GGMIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQD
|
27
|
+
AgSwMB0GA1UdDgQWBBSW+WD7hn1swJ1A7i8tbuFeuNCJCjAkBgNVHREEHTAbgRly
|
28
|
+
c3BlYy1kZXZAZ29vZ2xlZ291cHMuY29tMCQGA1UdEgQdMBuBGXJzcGVjLWRldkBn
|
29
|
+
b29nbGVnb3Vwcy5jb20wDQYJKoZIhvcNAQEFBQADggEBAH27jAZ8sD7vnXupj6Y+
|
30
|
+
BaBdfHtCkFaslLJ0aKuMDIVXwYuKfqoW15cZPDLmSIEBuQFM3lw6d/hEEL4Uo2jZ
|
31
|
+
FvtmH5OxifPDzFyUtCL4yp6qgNe/Xf6sDsRg6FmKcpgqCwNOmsViaf0LPSUH/GYQ
|
32
|
+
3Teoz8QCaDbD7AKsffT7eDrnbHnKweO1XdemRJC98u/yYxnGzMSWKEsn09etBlZ9
|
33
|
+
7H67k5Z3uf6cfLZgToWL6zShzZY3Nun5r73YsNf2/QZOe4UZe4vfGvn6baw53ys9
|
34
|
+
1yHC1AcSYpvi2dAbOiHT5iQF+krm4wse8KctXgTNnjMsHEoGKulJS2/sZl90jcCz
|
35
|
+
muA=
|
36
|
+
-----END CERTIFICATE-----
|
37
|
+
date: 2014-06-12 00:00:00.000000000 Z
|
45
38
|
dependencies:
|
46
39
|
- !ruby/object:Gem::Dependency
|
47
40
|
name: rspec-support
|
48
41
|
requirement: !ruby/object:Gem::Requirement
|
49
42
|
requirements:
|
50
|
-
- - ~>
|
43
|
+
- - "~>"
|
51
44
|
- !ruby/object:Gem::Version
|
52
45
|
version: 3.0.0
|
53
46
|
type: :runtime
|
54
47
|
prerelease: false
|
55
48
|
version_requirements: !ruby/object:Gem::Requirement
|
56
49
|
requirements:
|
57
|
-
- - ~>
|
50
|
+
- - "~>"
|
58
51
|
- !ruby/object:Gem::Version
|
59
52
|
version: 3.0.0
|
60
53
|
- !ruby/object:Gem::Dependency
|
61
54
|
name: rake
|
62
55
|
requirement: !ruby/object:Gem::Requirement
|
63
56
|
requirements:
|
64
|
-
- - ~>
|
57
|
+
- - "~>"
|
65
58
|
- !ruby/object:Gem::Version
|
66
59
|
version: 10.0.0
|
67
60
|
type: :development
|
68
61
|
prerelease: false
|
69
62
|
version_requirements: !ruby/object:Gem::Requirement
|
70
63
|
requirements:
|
71
|
-
- - ~>
|
64
|
+
- - "~>"
|
72
65
|
- !ruby/object:Gem::Version
|
73
66
|
version: 10.0.0
|
74
67
|
- !ruby/object:Gem::Dependency
|
75
68
|
name: cucumber
|
76
69
|
requirement: !ruby/object:Gem::Requirement
|
77
70
|
requirements:
|
78
|
-
- - ~>
|
71
|
+
- - "~>"
|
79
72
|
- !ruby/object:Gem::Version
|
80
73
|
version: '1.3'
|
81
74
|
type: :development
|
82
75
|
prerelease: false
|
83
76
|
version_requirements: !ruby/object:Gem::Requirement
|
84
77
|
requirements:
|
85
|
-
- - ~>
|
78
|
+
- - "~>"
|
86
79
|
- !ruby/object:Gem::Version
|
87
80
|
version: '1.3'
|
88
81
|
- !ruby/object:Gem::Dependency
|
89
82
|
name: minitest
|
90
83
|
requirement: !ruby/object:Gem::Requirement
|
91
84
|
requirements:
|
92
|
-
- - ~>
|
85
|
+
- - "~>"
|
93
86
|
- !ruby/object:Gem::Version
|
94
87
|
version: '5.3'
|
95
88
|
type: :development
|
96
89
|
prerelease: false
|
97
90
|
version_requirements: !ruby/object:Gem::Requirement
|
98
91
|
requirements:
|
99
|
-
- - ~>
|
92
|
+
- - "~>"
|
100
93
|
- !ruby/object:Gem::Version
|
101
94
|
version: '5.3'
|
102
95
|
- !ruby/object:Gem::Dependency
|
103
96
|
name: aruba
|
104
97
|
requirement: !ruby/object:Gem::Requirement
|
105
98
|
requirements:
|
106
|
-
- - ~>
|
99
|
+
- - "~>"
|
107
100
|
- !ruby/object:Gem::Version
|
108
101
|
version: '0.5'
|
109
102
|
type: :development
|
110
103
|
prerelease: false
|
111
104
|
version_requirements: !ruby/object:Gem::Requirement
|
112
105
|
requirements:
|
113
|
-
- - ~>
|
106
|
+
- - "~>"
|
114
107
|
- !ruby/object:Gem::Version
|
115
108
|
version: '0.5'
|
116
109
|
- !ruby/object:Gem::Dependency
|
@@ -131,56 +124,56 @@ dependencies:
|
|
131
124
|
name: coderay
|
132
125
|
requirement: !ruby/object:Gem::Requirement
|
133
126
|
requirements:
|
134
|
-
- - ~>
|
127
|
+
- - "~>"
|
135
128
|
- !ruby/object:Gem::Version
|
136
129
|
version: 1.0.9
|
137
130
|
type: :development
|
138
131
|
prerelease: false
|
139
132
|
version_requirements: !ruby/object:Gem::Requirement
|
140
133
|
requirements:
|
141
|
-
- - ~>
|
134
|
+
- - "~>"
|
142
135
|
- !ruby/object:Gem::Version
|
143
136
|
version: 1.0.9
|
144
137
|
- !ruby/object:Gem::Dependency
|
145
138
|
name: mocha
|
146
139
|
requirement: !ruby/object:Gem::Requirement
|
147
140
|
requirements:
|
148
|
-
- - ~>
|
141
|
+
- - "~>"
|
149
142
|
- !ruby/object:Gem::Version
|
150
143
|
version: 0.13.0
|
151
144
|
type: :development
|
152
145
|
prerelease: false
|
153
146
|
version_requirements: !ruby/object:Gem::Requirement
|
154
147
|
requirements:
|
155
|
-
- - ~>
|
148
|
+
- - "~>"
|
156
149
|
- !ruby/object:Gem::Version
|
157
150
|
version: 0.13.0
|
158
151
|
- !ruby/object:Gem::Dependency
|
159
152
|
name: rr
|
160
153
|
requirement: !ruby/object:Gem::Requirement
|
161
154
|
requirements:
|
162
|
-
- - ~>
|
155
|
+
- - "~>"
|
163
156
|
- !ruby/object:Gem::Version
|
164
157
|
version: 1.0.4
|
165
158
|
type: :development
|
166
159
|
prerelease: false
|
167
160
|
version_requirements: !ruby/object:Gem::Requirement
|
168
161
|
requirements:
|
169
|
-
- - ~>
|
162
|
+
- - "~>"
|
170
163
|
- !ruby/object:Gem::Version
|
171
164
|
version: 1.0.4
|
172
165
|
- !ruby/object:Gem::Dependency
|
173
166
|
name: flexmock
|
174
167
|
requirement: !ruby/object:Gem::Requirement
|
175
168
|
requirements:
|
176
|
-
- - ~>
|
169
|
+
- - "~>"
|
177
170
|
- !ruby/object:Gem::Version
|
178
171
|
version: 0.9.0
|
179
172
|
type: :development
|
180
173
|
prerelease: false
|
181
174
|
version_requirements: !ruby/object:Gem::Requirement
|
182
175
|
requirements:
|
183
|
-
- - ~>
|
176
|
+
- - "~>"
|
184
177
|
- !ruby/object:Gem::Version
|
185
178
|
version: 0.9.0
|
186
179
|
description: BDD for Ruby. RSpec runner and example groups.
|
@@ -190,6 +183,12 @@ executables:
|
|
190
183
|
extensions: []
|
191
184
|
extra_rdoc_files: []
|
192
185
|
files:
|
186
|
+
- ".document"
|
187
|
+
- ".yardopts"
|
188
|
+
- Changelog.md
|
189
|
+
- License.txt
|
190
|
+
- README.md
|
191
|
+
- exe/rspec
|
193
192
|
- lib/rspec/autorun.rb
|
194
193
|
- lib/rspec/core.rb
|
195
194
|
- lib/rspec/core/backport_random.rb
|
@@ -242,36 +241,30 @@ files:
|
|
242
241
|
- lib/rspec/core/version.rb
|
243
242
|
- lib/rspec/core/warnings.rb
|
244
243
|
- lib/rspec/core/world.rb
|
245
|
-
- README.md
|
246
|
-
- License.txt
|
247
|
-
- Changelog.md
|
248
|
-
- .yardopts
|
249
|
-
- .document
|
250
|
-
- exe/rspec
|
251
244
|
homepage: http://github.com/rspec/rspec-core
|
252
245
|
licenses:
|
253
246
|
- MIT
|
254
247
|
metadata: {}
|
255
248
|
post_install_message:
|
256
249
|
rdoc_options:
|
257
|
-
- --charset=UTF-8
|
250
|
+
- "--charset=UTF-8"
|
258
251
|
require_paths:
|
259
252
|
- lib
|
260
253
|
required_ruby_version: !ruby/object:Gem::Requirement
|
261
254
|
requirements:
|
262
|
-
- -
|
255
|
+
- - ">="
|
263
256
|
- !ruby/object:Gem::Version
|
264
257
|
version: 1.8.7
|
265
258
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
266
259
|
requirements:
|
267
|
-
- -
|
260
|
+
- - ">="
|
268
261
|
- !ruby/object:Gem::Version
|
269
262
|
version: '0'
|
270
263
|
requirements: []
|
271
264
|
rubyforge_project: rspec
|
272
|
-
rubygems_version: 2.
|
265
|
+
rubygems_version: 2.2.2
|
273
266
|
signing_key:
|
274
267
|
specification_version: 4
|
275
|
-
summary: rspec-core-3.0.
|
268
|
+
summary: rspec-core-3.0.1
|
276
269
|
test_files: []
|
277
270
|
has_rdoc:
|
metadata.gz.sig
CHANGED
Binary file
|