lnd-client 0.0.7 → 0.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3c3a8851f40cb71b9075f722a806978f768fa926146a9750d2ff0c7461217a5
4
- data.tar.gz: 6fc8f6d36aace0307ffb55c8aee7306b6d1bd7686fb19ed0704c19c581b310b1
3
+ metadata.gz: 6bde884b1430f8dd73f527adf0f90578bf7151bf411b77e7b3ba952f937bf675
4
+ data.tar.gz: 805112d53eaee06c7dc868f40a8ab4287805555c57dc6419dc8398223dc6a555
5
5
  SHA512:
6
- metadata.gz: 720da4b7e719632c509f93716924cd42aaef5f57b2b98005800dbea93f569d966328d2d6370f18eef3a164ceab21cdab62944c9efe683beb77f6ca424eaa115a
7
- data.tar.gz: 2c8d5ab9896089e02ee7e9badd1bd2b5c158ed9515542db74c87f5543303e27b0d0b06a28362944396f598629c7ce64fc73bcf38f4a88e7cb5fb95cee9bf42ba
6
+ metadata.gz: '087f58186e24b63d1fdaa79efb7c367f85c0715b231c233a81a671186967996f97184f5f857a783e2508f19b307cf7fa804beef61e127c30de77437ad8f81d61'
7
+ data.tar.gz: 4cecdf60d139163bebed559e0dbf74a4695a6990ba5925096e17452c4984fbd9f4e7ab3e6dabe6126b40fde01f33a58ebf8235726b87f5b8843193770c9c8709
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lnd-client (0.0.7)
4
+ lnd-client (0.0.8)
5
5
  grpc (~> 1.52)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -16,13 +16,13 @@ This is a low-level client library. For a better experience, you may want to che
16
16
  Add to your `Gemfile`:
17
17
 
18
18
  ```ruby
19
- gem 'lnd-client', '~> 0.0.7'
19
+ gem 'lnd-client', '~> 0.0.8'
20
20
  ```
21
21
 
22
22
  ```ruby
23
23
  require 'lnd-client'
24
24
 
25
- puts LNDClient.version # => 0.0.7
25
+ puts LNDClient.version # => 0.0.8
26
26
 
27
27
  client = LNDClient.new(
28
28
  'lndconnect://127.0.0.1:10009?cert=MIICJz...JBEERQ&macaroon=AgEDbG...45ukJ4'
@@ -98,5 +98,5 @@ gem build lnd-client.gemspec
98
98
 
99
99
  gem signin
100
100
 
101
- gem push lnd-client-0.0.7.gem
101
+ gem push lnd-client-0.0.8.gem
102
102
  ```
@@ -96,6 +96,9 @@ module LNDClientInternal
96
96
  certificate = params['cert'].tr('-_', '+/')
97
97
  macaroon = Base64.urlsafe_decode64(params['macaroon'])
98
98
 
99
+ padding_needed = 4 - (certificate.length % 4)
100
+ certificate += '=' * padding_needed
101
+
99
102
  certificate = "-----BEGIN CERTIFICATE-----\n#{certificate.gsub(/(.{64})/, "\\1\n")}\n-----END CERTIFICATE-----\n"
100
103
 
101
104
  {
data/static/spec.rb CHANGED
@@ -4,7 +4,7 @@ module LNDClientInternal
4
4
  module Static
5
5
  SPEC = {
6
6
  name: 'lnd-client',
7
- version: '0.0.7',
7
+ version: '0.0.8',
8
8
  author: 'icebaker',
9
9
  summary: 'Ruby Lightning Network Daemon (lnd) Client',
10
10
  description: 'Ruby Lightning Network Daemon (lnd) Client',
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lnd-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - icebaker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-19 00:00:00.000000000 Z
11
+ date: 2023-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc