radix_encoding 0.1.0 → 0.1.0.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/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/lib/radix_encoding/version.rb +1 -1
- data/radix_encoding.gemspec +3 -4
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz: '
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '02197f59050cbbb957a0443cf736f694920b8d82f896e02bfeba3475f6d5a3af'
|
|
4
|
+
data.tar.gz: 2a79111dac3bc6da8d8498e731df48f260c1cf417cbada372a37693f073595aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9b8e582773a4811ffb52512f984ea54e8b3076651b4c4dbf7c509885b521486f373f89f19ea5f762a8369344e37c910f42fbc617f8cebf57b0bb04e8c83ea6e
|
|
7
|
+
data.tar.gz: fa5fb2cc3fe8203402fd08fb86a20869b36db1924be0add0a6441bebcc0ad263ab38e1687f25c488e014d6eed3be45290473167b8da17bf55a55caca7e10ea70
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning].
|
|
|
10
10
|
Unreleased
|
|
11
11
|
----------
|
|
12
12
|
|
|
13
|
+
- Change gem description to be clear we only support power-of-2 bases.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
v0.1.0 - 2020-05-08
|
|
17
|
+
-------------------
|
|
18
|
+
|
|
13
19
|
- Add standard Base16, Base32, and Base64, encoding and decoding.
|
|
14
20
|
|
|
15
21
|
|
data/Gemfile.lock
CHANGED
data/radix_encoding.gemspec
CHANGED
|
@@ -9,15 +9,14 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.email = ["pedro@subvisual.com"]
|
|
10
10
|
spec.license = "MIT"
|
|
11
11
|
|
|
12
|
-
spec.summary = "Encode data in any base and alphabet"
|
|
12
|
+
spec.summary = "Encode data in any power-of-2 base and alphabet"
|
|
13
13
|
spec.description = <<~DESCRIPTION
|
|
14
14
|
Binary to text encoding of data is commonly used for transmission when the
|
|
15
15
|
channel does not support binary data. Common formats are Base16 (also known
|
|
16
16
|
as hexadecimal), Base32, and Base64.
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
alphabet, handling the special case where the base is not a power of 2.
|
|
18
|
+
This tool allows the creation of an encoder for any power-of-2 base and
|
|
19
|
+
alphabet, allowing even to customize the padding to be used, if any.
|
|
21
20
|
DESCRIPTION
|
|
22
21
|
spec.homepage = "https://github.com/subvisual/ruby-radix-encoding"
|
|
23
22
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: radix_encoding
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0
|
|
4
|
+
version: 0.1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Costa
|
|
@@ -43,9 +43,8 @@ description: |
|
|
|
43
43
|
channel does not support binary data. Common formats are Base16 (also known
|
|
44
44
|
as hexadecimal), Base32, and Base64.
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
alphabet, handling the special case where the base is not a power of 2.
|
|
46
|
+
This tool allows the creation of an encoder for any power-of-2 base and
|
|
47
|
+
alphabet, allowing even to customize the padding to be used, if any.
|
|
49
48
|
email:
|
|
50
49
|
- pedro@subvisual.com
|
|
51
50
|
executables: []
|
|
@@ -97,5 +96,5 @@ requirements: []
|
|
|
97
96
|
rubygems_version: 3.0.3
|
|
98
97
|
signing_key:
|
|
99
98
|
specification_version: 4
|
|
100
|
-
summary: Encode data in any base and alphabet
|
|
99
|
+
summary: Encode data in any power-of-2 base and alphabet
|
|
101
100
|
test_files: []
|