to_be 0.0.1 → 0.0.2
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
- data/README.md +6 -2
- data/Rakefile +19 -0
- data/lib/to_be/version.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0ff8933d89119c5b74e5ef1aeed78fb05f38b649c0b38f9921820cd70cb3c3a
|
4
|
+
data.tar.gz: 940e2e189d6d6f86109d79460898bc4dac77bc35b142aeaab9fb772a6172dc96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9a3a3469298aad511ebc9bedb3f7854f49be5a949d922679f6a22ed123e0d985ccee0803efdf19176ded0f4d439b31940b58f51ba064487f6f0ed889c1342aa
|
7
|
+
data.tar.gz: d4d8f49d24b26a786815cde1e9dca42b04e9f51db14d95d91a98b4c5f6f57219deb0b8e35b07c5a4c206e7eee350445f3202fcac14f0766d15ffc5241504c399
|
data/README.md
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
# to_be.Ruby <!-- omit in toc -->
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+

|
4
|
+
[](https://opensource.org/licenses/BSD-3-Clause)
|
5
|
+
[](https://github.com/synesissoftware/to_be.Ruby/releases/latest)
|
6
|
+
[](https://github.com/synesissoftware/to_be.Ruby/commits/master)
|
5
7
|
[](https://badge.fury.io/rb/to_be)
|
6
8
|
|
9
|
+
Simple Ruby library determining whether strings indicate truey or falsy values.
|
10
|
+
|
7
11
|
|
8
12
|
## Introduction
|
9
13
|
|
data/Rakefile
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# Rakefile for xqsr3
|
2
|
+
|
3
|
+
require 'rake/testtask'
|
4
|
+
|
5
|
+
|
6
|
+
Rake::TestTask.new do |tt|
|
7
|
+
|
8
|
+
tt.libs << "lib"
|
9
|
+
tt.name = "test"
|
10
|
+
tt.test_files = FileList['test/**/tc_*.rb']
|
11
|
+
tt.verbose = true
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
task :default => :test
|
16
|
+
|
17
|
+
|
18
|
+
# ############################## end of file ############################# #
|
19
|
+
|
data/lib/to_be/version.rb
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
# Purpose: Version for ToBe.Ruby library
|
6
6
|
#
|
7
7
|
# Created: 11th August 2025
|
8
|
-
# Updated:
|
8
|
+
# Updated: 1st September 2025
|
9
9
|
#
|
10
10
|
# Home: http://github.com/synesissoftware/to_be.Ruby
|
11
11
|
#
|
@@ -51,7 +51,7 @@
|
|
51
51
|
module ToBe
|
52
52
|
|
53
53
|
# Current version of the ToBe.Ruby library
|
54
|
-
VERSION = '0.0.
|
54
|
+
VERSION = '0.0.2'
|
55
55
|
|
56
56
|
private
|
57
57
|
# @!visibility private
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: to_be
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Wilson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: xqsr3
|
@@ -35,6 +35,7 @@ extra_rdoc_files: []
|
|
35
35
|
files:
|
36
36
|
- LICENSE
|
37
37
|
- README.md
|
38
|
+
- Rakefile
|
38
39
|
- lib/to_be.rb
|
39
40
|
- lib/to_be/extensions/string.rb
|
40
41
|
- lib/to_be/internal/_str2bool.rb
|