radix_encoding 0.1.0 → 0.1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '018a417a158a2d60b134e3bf6331a29dac60dd87833f9350820238e5cb3c000d'
4
- data.tar.gz: c7194e2fe2bec7e3e7c3dc336e7556ed7cbd1a1add1c51843c1916fae4a0bd20
3
+ metadata.gz: '02197f59050cbbb957a0443cf736f694920b8d82f896e02bfeba3475f6d5a3af'
4
+ data.tar.gz: 2a79111dac3bc6da8d8498e731df48f260c1cf417cbada372a37693f073595aa
5
5
  SHA512:
6
- metadata.gz: a53bc0cf4447a43587a810dab88c5a5c96fd1ba1ec25b932596f0cde2ff853a6afdda621bf2b150e5e3b89d1da18b53552cc9f1acd31ca0be7e2fea2e50802ba
7
- data.tar.gz: 899028cec1af9736746d172df569d4522fe4c65a196c253214a5d4f9a1d6bbdd34fa7bdfa58a50c78b878de41427bd0b38ec47ef71c4b03f3871a58ecdf31926
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- radix_encoding (0.1.0)
4
+ radix_encoding (0.1.0.1)
5
5
  activesupport (>= 3.0)
6
6
  subvisual-utils (~> 0.x)
7
7
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RadixEncoding
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.0.1"
5
5
  end
@@ -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
- However it is possible to encode data into any base, given an alphabet with
19
- that length. This tool allows the creation of an encoder for any base and
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
- However it is possible to encode data into any base, given an alphabet with
47
- that length. This tool allows the creation of an encoder for any base and
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: []