string-builder 2.1.0 → 2.1.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 +4 -4
- data/README.md +1 -1
- data/string-builder.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 968a9ed0e66b05ba5ebf1097c4eb93cfc261a4cb4d5a7834716d237bc828c80d
|
|
4
|
+
data.tar.gz: 8ce225e70fc36e5c6fd987dcc8703273b714e8d33c4911b870b7a677cd27a829
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43aa802365254956bf79c3fc0e6ee84e542a0c55ff456c78b867ac17f51e9030fe1ffa14f3bcbbd5b3bc723219c6f0fde97ad12842550e67a7241c865bcf2231
|
|
7
|
+
data.tar.gz: 95a2668b3bc77a84a5b24c4f8cf446d3b9d3f8a58ceb958ac1604776c1547b58eebfa3eec4347b9a7928f7b348a81ecb9c3fdb7c17e2601625756fbcb2ed9144
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# String::Builder
|
|
6
6
|
|
|
7
|
-
Modified and extended port of the [String::Builder](https://crystal-lang.org/api/0.20.3/String/Builder.html#build%28capacity%3AInt%3D64%2C%26block%29%3AString-class-method) IO-style initializer
|
|
7
|
+
Modified and extended port of the [String::Builder](https://crystal-lang.org/api/0.20.3/String/Builder.html#build%28capacity%3AInt%3D64%2C%26block%29%3AString-class-method) IO-style initializer for the `String` class of the Crystal programming language.
|
|
8
8
|
|
|
9
9
|
## Methods
|
|
10
10
|
|
data/string-builder.gemspec
CHANGED
|
@@ -3,11 +3,11 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = "string-builder"
|
|
6
|
-
spec.version = "2.1.
|
|
6
|
+
spec.version = "2.1.1"
|
|
7
7
|
spec.authors = ["Edwin Onuonga"]
|
|
8
8
|
spec.email = ["edwinonuonga@gmail.com"]
|
|
9
9
|
|
|
10
|
-
spec.summary = %q{Modified and extended port of the String::Builder IO-style initializer
|
|
10
|
+
spec.summary = %q{Modified and extended port of the String::Builder IO-style initializer for the String class of the Crystal programming language.}
|
|
11
11
|
spec.homepage = "https://www.github.com/eonu/string-builder"
|
|
12
12
|
spec.license = "MIT"
|
|
13
13
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: string-builder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edwin Onuonga
|
|
@@ -93,6 +93,6 @@ rubyforge_project:
|
|
|
93
93
|
rubygems_version: 2.7.3
|
|
94
94
|
signing_key:
|
|
95
95
|
specification_version: 4
|
|
96
|
-
summary: Modified and extended port of the String::Builder IO-style initializer
|
|
96
|
+
summary: Modified and extended port of the String::Builder IO-style initializer for
|
|
97
97
|
the String class of the Crystal programming language.
|
|
98
98
|
test_files: []
|