File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 6
6
7
7
group :test , :development do
8
8
gem 'pry-byebug' , '~> 3.10' , '>= 3.10.1'
9
- gem 'rubocop' , '~> 1.44'
9
+ gem 'rubocop' , '~> 1.44' , '>= 1.44.1'
10
10
gem 'rubocop-rake' , '~> 0.6.0'
11
11
end
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- lnd-client (0.0.2 )
4
+ lnd-client (0.0.3 )
5
5
grpc (~> 1.51 )
6
6
7
7
GEM
30
30
rainbow (3.1.1 )
31
31
regexp_parser (2.6.2 )
32
32
rexml (3.2.5 )
33
- rubocop (1.44.0 )
33
+ rubocop (1.44.1 )
34
34
json (~> 2.3 )
35
35
parallel (~> 1.10 )
36
36
parser (>= 3.2.0.0 )
@@ -53,7 +53,7 @@ PLATFORMS
53
53
DEPENDENCIES
54
54
lnd-client !
55
55
pry-byebug (~> 3.10 , >= 3.10.1 )
56
- rubocop (~> 1.44 )
56
+ rubocop (~> 1.44 , >= 1.44.1 )
57
57
rubocop-rake (~> 0.6.0 )
58
58
59
59
BUNDLED WITH
Original file line number Diff line number Diff line change 14
14
Add to your ` Gemfile ` :
15
15
16
16
``` ruby
17
- gem ' lnd-client' , ' ~> 0.0.2 '
17
+ gem ' lnd-client' , ' ~> 0.0.3 '
18
18
```
19
19
20
20
``` ruby
21
21
require ' lnd-client'
22
22
23
- puts LNDClient .version # => 0.0.2
23
+ puts LNDClient .version # => 0.0.3
24
24
25
25
client = LNDClient .new (
26
26
certificate_path: ' /lnd/tls.cert' ,
56
56
``` ruby
57
57
require ' lnd-client'
58
58
59
- puts LNDClient .version # => 0.0.2
59
+ puts LNDClient .version # => 0.0.3
60
60
61
61
client = LNDClient .new (
62
62
certificate_path: ' /lnd/tls.cert' ,
@@ -79,7 +79,7 @@ graph.edges # => [...]
79
79
``` ruby
80
80
require ' lnd-client'
81
81
82
- puts LNDClient .version # => 0.0.2
82
+ puts LNDClient .version # => 0.0.3
83
83
84
84
client = LNDClient .new (
85
85
certificate_path: ' /lnd/tls.cert' ,
@@ -146,5 +146,5 @@ gem build lnd-client.gemspec
146
146
147
147
gem signin
148
148
149
- gem push lnd-client-0.0.2 .gem
149
+ gem push lnd-client-0.0.3 .gem
150
150
```
Original file line number Diff line number Diff line change 3
3
module Static
4
4
SPEC = {
5
5
name : 'lnd-client' ,
6
- version : '0.0.2 ' ,
6
+ version : '0.0.3 ' ,
7
7
author : 'icebaker' ,
8
8
summary : 'Ruby Lightning Network Daemon (lnd) Client' ,
9
9
description : 'Ruby Lightning Network Daemon (lnd) Client' ,
You can’t perform that action at this time.
0 commit comments