backports 3.18.1 → 3.18.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/backports/2.3.0/string.rb +3 -0
- data/lib/backports/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 178159f05e53f3b3fc1c828a000e71a5f1860b058cf91c651f49b252ce05f130
|
4
|
+
data.tar.gz: b088578f04bd15de52d682caa6f9ba4fbe819a8d51fb66f89a8323019e40ca49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14187360b8a6f5a85f61a1ab8cac5121ce6bbc468dab22cefd8ec73c85cf834d1865a83da9fb3e2ddb3ec2adee5cbf90e4e8d22c254e14d543e5d9491d166736
|
7
|
+
data.tar.gz: b3456f62ca139a0beec8d4f8b3faff8ed7616da4fc3e31083bc9647a816c7c55ef8eb568f4f9dd101ff62e1279cc90e8f32ec67a67ccb14be3e902ef9af07ba1
|
data/CHANGELOG.md
CHANGED
@@ -8,6 +8,18 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
8
8
|
|
9
9
|
Note: [Next major version (X-mas 2020)](https://github.com/marcandre/backports/issues/139) might drop support for Ruby < 2.2, please comment.
|
10
10
|
|
11
|
+
## [3.18.2](https://github.com/marcandre/backports/compare/v3.18.0...v3.18.2) - 2020-08-26
|
12
|
+
|
13
|
+
### Fixed
|
14
|
+
|
15
|
+
Require per ruby version now properly requiring 2.3.0 backports for `String` [#152]
|
16
|
+
|
17
|
+
## [3.18.2](https://github.com/marcandre/backports/compare/v3.18.1...v3.18.2) - 2020-08-26
|
18
|
+
|
19
|
+
### Fixed
|
20
|
+
|
21
|
+
Fixed Changelog URI in gem manifest
|
22
|
+
|
11
23
|
## [3.18.0](https://github.com/marcandre/backports/compare/v3.17.2...v3.18.0) - 2020-06-22
|
12
24
|
|
13
25
|
### Changed
|
data/lib/backports/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
module Backports
|
2
|
-
VERSION = "3.18.
|
2
|
+
VERSION = "3.18.2" unless Backports.constants.include? :VERSION # the guard is against a redefinition warning that happens on Travis
|
3
3
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: backports
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.18.
|
4
|
+
version: 3.18.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc-André Lafortune
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Essential backports that enable many of the nice features of Ruby for
|
14
14
|
earlier versions.
|
@@ -425,6 +425,7 @@ files:
|
|
425
425
|
- lib/backports/2.3.0/numeric.rb
|
426
426
|
- lib/backports/2.3.0/numeric/negative.rb
|
427
427
|
- lib/backports/2.3.0/numeric/positive.rb
|
428
|
+
- lib/backports/2.3.0/string.rb
|
428
429
|
- lib/backports/2.3.0/string/uminus.rb
|
429
430
|
- lib/backports/2.3.0/string/uplus.rb
|
430
431
|
- lib/backports/2.3.0/struct.rb
|
@@ -569,7 +570,7 @@ metadata:
|
|
569
570
|
changelog_uri: https://github.com/marcandre/backports/blob/master/CHANGELOG.md
|
570
571
|
source_code_uri: https://github.com/marcandre/backports
|
571
572
|
bug_tracker_uri: https://github.com/marcandre/backports/issues
|
572
|
-
post_install_message:
|
573
|
+
post_install_message:
|
573
574
|
rdoc_options: []
|
574
575
|
require_paths:
|
575
576
|
- lib
|
@@ -585,7 +586,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
585
586
|
version: '0'
|
586
587
|
requirements: []
|
587
588
|
rubygems_version: 3.1.2
|
588
|
-
signing_key:
|
589
|
+
signing_key:
|
589
590
|
specification_version: 4
|
590
591
|
summary: Backports of Ruby features for older Ruby.
|
591
592
|
test_files: []
|