rspec-support 3.12.2 → 3.13.0
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
- checksums.yaml.gz.sig +0 -0
- data/Changelog.md +8 -1
- data/lib/rspec/support/ruby_features.rb +10 -0
- data/lib/rspec/support/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 220efb5124746665a9d6edd89a312072ca68132e32a98f133d5f99763fed02d3
|
|
4
|
+
data.tar.gz: e7637055abcd4dd372d577af3bf67c0a653d6f4d62a2ea18f5737c1955057933
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b9830bc0bfe3b0012f63fd34fb84acd1b6bbce0aee62bd319ec96563279ef751b19649973446b7799d17812695ac47108624ab06e62f5ebe3574e8374635450
|
|
7
|
+
data.tar.gz: 2ce1f840dd991882eed89dbdf1fe820680933819ee49016f8acee350d0fb3295deed76d152cb73b9fb839154993cf901a0b743fc1558848e97668e3064d2bd4e
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/Changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
### Development
|
|
2
|
-
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.
|
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.0...main)
|
|
3
|
+
|
|
4
|
+
### 3.13.0 / 2024-02-04
|
|
5
|
+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.2...v3.13.0)
|
|
6
|
+
|
|
7
|
+
Enchancements
|
|
8
|
+
|
|
9
|
+
* Add `RubyFeatures#supports_syntax_suggest?`. (Jon Rowe, #571)
|
|
3
10
|
|
|
4
11
|
### 3.12.2 / 2024-02-04
|
|
5
12
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.1...v3.12.2)
|
|
@@ -96,6 +96,16 @@ module RSpec
|
|
|
96
96
|
end
|
|
97
97
|
end
|
|
98
98
|
|
|
99
|
+
if RUBY_VERSION.to_f >= 3.2
|
|
100
|
+
def supports_syntax_suggest?
|
|
101
|
+
true
|
|
102
|
+
end
|
|
103
|
+
else
|
|
104
|
+
def supports_syntax_suggest?
|
|
105
|
+
false
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
99
109
|
if RUBY_VERSION.to_f >= 3.0
|
|
100
110
|
# https://rubyreferences.github.io/rubychanges/3.0.html#keyword-arguments-are-now-fully-separated-from-positional-arguments
|
|
101
111
|
def kw_arg_separation?
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Chelimsky
|
|
@@ -125,7 +125,7 @@ licenses:
|
|
|
125
125
|
- MIT
|
|
126
126
|
metadata:
|
|
127
127
|
bug_tracker_uri: https://github.com/rspec/rspec-support/issues
|
|
128
|
-
changelog_uri: https://github.com/rspec/rspec-support/blob/v3.
|
|
128
|
+
changelog_uri: https://github.com/rspec/rspec-support/blob/v3.13.0/Changelog.md
|
|
129
129
|
documentation_uri: https://rspec.info/documentation/
|
|
130
130
|
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
|
131
131
|
source_code_uri: https://github.com/rspec/rspec-support
|
|
@@ -148,5 +148,5 @@ requirements: []
|
|
|
148
148
|
rubygems_version: 3.4.10
|
|
149
149
|
signing_key:
|
|
150
150
|
specification_version: 4
|
|
151
|
-
summary: rspec-support-3.
|
|
151
|
+
summary: rspec-support-3.13.0
|
|
152
152
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|