base58_gmp 0.0.2 → 0.0.3
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.
- data/CHANGELOG +3 -0
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/base58_gmp.gemspec +2 -3
- metadata +4 -4
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
|
@@ -23,7 +23,7 @@ Download and install base58_gmp with the following.
|
|
|
23
23
|
|
|
24
24
|
== Notes
|
|
25
25
|
|
|
26
|
-
GMP-
|
|
26
|
+
GMP-supported Base58 decoding is not currently provided as underlying support is not yet available in the Ruby GMP binding.
|
|
27
27
|
|
|
28
28
|
For now, please use the base58 gem for Ruby-based decoding.
|
|
29
29
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.3
|
data/base58_gmp.gemspec
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'base58_gmp'
|
|
3
|
-
s.version = '0.0.
|
|
3
|
+
s.version = '0.0.3'
|
|
4
4
|
s.date = '2011-11-06'
|
|
5
5
|
s.summary = 'High speed Base58 encoding using GMP with MD5 support'
|
|
6
|
-
s.description = 'Base58 encoding using
|
|
6
|
+
s.description = 'Base58 encoding using the GNU Multiple Precision Arithmetic Library (GMP)'
|
|
7
7
|
s.authors = ['John Wang']
|
|
8
8
|
s.email = 'john@johnwang.com'
|
|
9
|
-
s.files = ['lib/base58_gmp.rb']
|
|
10
9
|
s.homepage =
|
|
11
10
|
'http://rubygems.org/gems/base58_gmp'
|
|
12
11
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: base58_gmp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.0.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- John Wang
|
|
@@ -19,7 +19,7 @@ date: 2011-11-06 00:00:00 -07:00
|
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies: []
|
|
21
21
|
|
|
22
|
-
description: Base58 encoding using
|
|
22
|
+
description: Base58 encoding using the GNU Multiple Precision Arithmetic Library (GMP)
|
|
23
23
|
email: john@johnwang.com
|
|
24
24
|
executables: []
|
|
25
25
|
|