to_bool_extension 0.0.5 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3382fec356f66dafe99435cb1aef30f87342a194bc7697958045fb730ade6578
4
- data.tar.gz: ce3569e026ef3ead8fa7818719b19028fc212fa24e80eab77b12ccaa22332726
3
+ metadata.gz: 434b306bb14b7d92ddfe1b3ea34b592f0559f619cc33b5a6a0a09d3341ed8972
4
+ data.tar.gz: c440612ee75425b29b1d870bb11396a1b3317132c755768e18208e9bd9bcfd1b
5
5
  SHA512:
6
- metadata.gz: 9f373ff51d750c998d0ae2fe9931188e49ed57cb77497172c686f7b7525b555d0ae3e8391e8f1b44fc26cea5d751fbd91bbad10f9d409ea0bd52360f46332832
7
- data.tar.gz: f35d37781a5364816e698c02a51c669addcf4f5587b9b7bc0a2d3f6c11a188e45bc5bb4b77f715120c458ac335b1fd73395458530690049ffa9460609f410ce5
6
+ metadata.gz: 01a6514f7b8ba3b65ec20329b71158dc50475141a4cdd8d791e40dbc327054e8382517a458430271d25911039313204094780fea240849adebf102729e5509fc
7
+ data.tar.gz: 21b77d214daf4a2e619d29f68cccdfb002bec8ba81ddd3fcf3ff8e9496355cd6f2fb695c6e9e011c10989bca5b434e6a77a63621743d61a9a06c7a8c6b306274
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.0.0 (2023-05-15)
5
+ ------------------
6
+
7
+ * Version bump to v1
8
+
4
9
  0.0.5 (2022-03-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.5
1
+ 1.0.0
@@ -29,8 +29,5 @@ String.class_eval do
29
29
  end
30
30
 
31
31
  Numeric.class_eval do
32
- # :nodoc:
33
- def to_bool
34
- to_s.to_bool
35
- end
32
+ delegate :to_bool, to: :to_s
36
33
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: to_bool_extension
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Wyatt
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-30 00:00:00.000000000 Z
11
+ date: 2023-05-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description:
13
+ description:
14
14
  email:
15
15
  - mwyatt@brandsinsurance.com
16
16
  executables: []
@@ -21,12 +21,13 @@ files:
21
21
  - LICENSE.txt
22
22
  - VERSION
23
23
  - lib/to_bool_extension.rb
24
- homepage: https://github.com/mlwyatt/rails-extensions
24
+ homepage: https://github.com/BrandsInsurance/rails-extensions
25
25
  licenses:
26
26
  - MIT
27
27
  metadata:
28
- source_code_uri: https://github.com/mlwyatt/rails-extensions
29
- post_install_message:
28
+ rubygems_mfa_required: 'true'
29
+ source_code_uri: https://github.com/BrandsInsurance/rails-extensions/tree/main/gems/to_bool_extension
30
+ post_install_message:
30
31
  rdoc_options: []
31
32
  require_paths:
32
33
  - lib
@@ -42,7 +43,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
42
43
  version: '0'
43
44
  requirements: []
44
45
  rubygems_version: 3.2.15
45
- signing_key:
46
+ signing_key:
46
47
  specification_version: 4
47
48
  summary: Adds `to_bool` method to `TrueClass`, `FalseClass`, and `NilClass`
48
49
  test_files: []