rspec-expectations 2.99.0 → 2.99.1

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,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- YjkxOGIyZDlkOGFkYmNlNTNiZTg1NzY3MmVmZDg4ZTE2YTg1NjNlZg==
5
- data.tar.gz: !binary |-
6
- MDc2MmQyNGE4OWNlOTdhYTgyMDkyMDQ4MmI2NzQ1ZmRhYjhiYzE4Ng==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- ODczNTI0ZjZjOWRhNzQ0Zjc5ZjVjODdjYTc1NzJjYzc1ZmM3NjQ5OGU0NDQ1
10
- Y2MzODUzYzk5OTY1ZDI5MmY3OTlhZTRjNzJhZmQ4MzZmMzhkZWUwY2YxNTdl
11
- ZmZiMmI1MWUzZThiOThlZWE3NDI3ZDFjMjhjZjBlM2E3OGRhYjM=
12
- data.tar.gz: !binary |-
13
- ODJlOTYzOGFkMjRhZTQ1OWQ5YjZhNTk4NWY0ZjZhMzhhMzk2OGRiOGNiYThl
14
- YWFiZWNmYWJhNWVhNGJkNWEwYmViYTQ0ZjUwMTU4NmViOGE2YTQwODY3NTkz
15
- NDQ5ZTU4M2M0MTBlMzEwMjRiNzM0Nzg3NWQzZDE0NzM3ZmU2Yzc=
2
+ SHA1:
3
+ metadata.gz: 737416d432579324de7ff88e00b431f9d153f74e
4
+ data.tar.gz: e739ae372811bbe96988b245be5ce6d3471103f8
5
+ SHA512:
6
+ metadata.gz: e1b6c44aa256cc88f1de6042514048e0c4d4431c1f9a9634ee3d89fe45361598034a0f2006cc895805ec555d7cc2d5bfe4665e30f1e2badf75507cc53ef352c8
7
+ data.tar.gz: 86df8a2dc0a99d7ca8c8a94533b5e9ed4a7f7461160b2bd28de79076d649d46870201a1efca5dc00ca095ba06304435dfdccb30f478059668692766832ac021c
@@ -1,3 +1,11 @@
1
+ ### 2.99.1 / 2014-06-19
2
+ [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.99.0...v2.99.1)
3
+
4
+ Bug Fixes:
5
+
6
+ * Fix typo in custom matcher `expected` deprecation warning -- it's
7
+ `expected_as_array`, not `expected_array`. (Frederick Cheung, #562)
8
+
1
9
  ### 2.99.0 / 2014-06-01
2
10
  [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v2.99.0.rc1...v2.99.0)
3
11
 
@@ -2,7 +2,7 @@ module RSpec
2
2
  module Expectations
3
3
  # @private
4
4
  module Version
5
- STRING = '2.99.0'
5
+ STRING = '2.99.1'
6
6
  end
7
7
  end
8
8
  end
@@ -42,7 +42,7 @@ module RSpec
42
42
  "Custom matchers in 3.x will set expected to be a single value "+
43
43
  "(when provided as such) rather than an array. This may change "+
44
44
  "the behaviour of your matcher.\n"+
45
- "To continue to access this as an array use `expected_array`\n"+
45
+ "To continue to access this as an array use `expected_as_array`\n"+
46
46
  "Called from: #{ RSpec::CallerFilter.first_non_rspec_line }\n\n"
47
47
  )
48
48
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-expectations
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.99.0
4
+ version: 2.99.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Baker
@@ -9,68 +9,68 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-06-01 00:00:00.000000000 Z
12
+ date: 2014-06-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: diff-lcs
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ! '>='
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: 1.1.3
21
- - - <
21
+ - - "<"
22
22
  - !ruby/object:Gem::Version
23
23
  version: '2.0'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
- - - ! '>='
28
+ - - ">="
29
29
  - !ruby/object:Gem::Version
30
30
  version: 1.1.3
31
- - - <
31
+ - - "<"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '2.0'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: rake
36
36
  requirement: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 10.0.0
41
41
  type: :development
42
42
  prerelease: false
43
43
  version_requirements: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 10.0.0
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: cucumber
50
50
  requirement: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 1.1.9
55
55
  type: :development
56
56
  prerelease: false
57
57
  version_requirements: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: 1.1.9
62
62
  - !ruby/object:Gem::Dependency
63
63
  name: aruba
64
64
  requirement: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0.5'
69
69
  type: :development
70
70
  prerelease: false
71
71
  version_requirements: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0.5'
76
76
  description: rspec expectations (should[_not] and matchers)
@@ -79,6 +79,46 @@ executables: []
79
79
  extensions: []
80
80
  extra_rdoc_files: []
81
81
  files:
82
+ - ".document"
83
+ - ".yardopts"
84
+ - Changelog.md
85
+ - License.txt
86
+ - README.md
87
+ - features/README.md
88
+ - features/Upgrade.md
89
+ - features/built_in_matchers/README.md
90
+ - features/built_in_matchers/be.feature
91
+ - features/built_in_matchers/be_within.feature
92
+ - features/built_in_matchers/cover.feature
93
+ - features/built_in_matchers/end_with.feature
94
+ - features/built_in_matchers/equality.feature
95
+ - features/built_in_matchers/exist.feature
96
+ - features/built_in_matchers/expect_change.feature
97
+ - features/built_in_matchers/expect_error.feature
98
+ - features/built_in_matchers/have.feature
99
+ - features/built_in_matchers/include.feature
100
+ - features/built_in_matchers/match.feature
101
+ - features/built_in_matchers/operators.feature
102
+ - features/built_in_matchers/predicates.feature
103
+ - features/built_in_matchers/respond_to.feature
104
+ - features/built_in_matchers/satisfy.feature
105
+ - features/built_in_matchers/start_with.feature
106
+ - features/built_in_matchers/throw_symbol.feature
107
+ - features/built_in_matchers/types.feature
108
+ - features/built_in_matchers/yield.feature
109
+ - features/custom_matchers/access_running_example.feature
110
+ - features/custom_matchers/define_diffable_matcher.feature
111
+ - features/custom_matchers/define_matcher.feature
112
+ - features/custom_matchers/define_matcher_outside_rspec.feature
113
+ - features/custom_matchers/define_matcher_with_fluent_interface.feature
114
+ - features/customized_message.feature
115
+ - features/diffing.feature
116
+ - features/implicit_docstrings.feature
117
+ - features/step_definitions/additional_cli_steps.rb
118
+ - features/support/env.rb
119
+ - features/support/rubinius.rb
120
+ - features/syntax_configuration.feature
121
+ - features/test_frameworks/test_unit.feature
82
122
  - lib/rspec-expectations.rb
83
123
  - lib/rspec/expectations.rb
84
124
  - lib/rspec/expectations/caller_filter.rb
@@ -130,46 +170,6 @@ files:
130
170
  - lib/rspec/matchers/operator_matcher.rb
131
171
  - lib/rspec/matchers/pretty.rb
132
172
  - lib/rspec/matchers/test_unit_integration.rb
133
- - README.md
134
- - License.txt
135
- - Changelog.md
136
- - .yardopts
137
- - .document
138
- - features/README.md
139
- - features/Upgrade.md
140
- - features/built_in_matchers/README.md
141
- - features/built_in_matchers/be.feature
142
- - features/built_in_matchers/be_within.feature
143
- - features/built_in_matchers/cover.feature
144
- - features/built_in_matchers/end_with.feature
145
- - features/built_in_matchers/equality.feature
146
- - features/built_in_matchers/exist.feature
147
- - features/built_in_matchers/expect_change.feature
148
- - features/built_in_matchers/expect_error.feature
149
- - features/built_in_matchers/have.feature
150
- - features/built_in_matchers/include.feature
151
- - features/built_in_matchers/match.feature
152
- - features/built_in_matchers/operators.feature
153
- - features/built_in_matchers/predicates.feature
154
- - features/built_in_matchers/respond_to.feature
155
- - features/built_in_matchers/satisfy.feature
156
- - features/built_in_matchers/start_with.feature
157
- - features/built_in_matchers/throw_symbol.feature
158
- - features/built_in_matchers/types.feature
159
- - features/built_in_matchers/yield.feature
160
- - features/custom_matchers/access_running_example.feature
161
- - features/custom_matchers/define_diffable_matcher.feature
162
- - features/custom_matchers/define_matcher.feature
163
- - features/custom_matchers/define_matcher_outside_rspec.feature
164
- - features/custom_matchers/define_matcher_with_fluent_interface.feature
165
- - features/customized_message.feature
166
- - features/diffing.feature
167
- - features/implicit_docstrings.feature
168
- - features/step_definitions/additional_cli_steps.rb
169
- - features/support/env.rb
170
- - features/support/rubinius.rb
171
- - features/syntax_configuration.feature
172
- - features/test_frameworks/test_unit.feature
173
173
  - spec/rspec/expectations/configuration_spec.rb
174
174
  - spec/rspec/expectations/differ_spec.rb
175
175
  - spec/rspec/expectations/expectation_target_spec.rb
@@ -222,25 +222,25 @@ licenses:
222
222
  metadata: {}
223
223
  post_install_message:
224
224
  rdoc_options:
225
- - --charset=UTF-8
225
+ - "--charset=UTF-8"
226
226
  require_paths:
227
227
  - lib
228
228
  required_ruby_version: !ruby/object:Gem::Requirement
229
229
  requirements:
230
- - - ! '>='
230
+ - - ">="
231
231
  - !ruby/object:Gem::Version
232
232
  version: '0'
233
233
  required_rubygems_version: !ruby/object:Gem::Requirement
234
234
  requirements:
235
- - - ! '>='
235
+ - - ">="
236
236
  - !ruby/object:Gem::Version
237
237
  version: '0'
238
238
  requirements: []
239
239
  rubyforge_project: rspec
240
- rubygems_version: 2.0.7
240
+ rubygems_version: 2.2.2
241
241
  signing_key:
242
242
  specification_version: 4
243
- summary: rspec-expectations-2.99.0
243
+ summary: rspec-expectations-2.99.1
244
244
  test_files:
245
245
  - features/README.md
246
246
  - features/Upgrade.md