File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- 3.1.3
1+ 3.2.0
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ source 'https://rubygems.org'
55# Specify your gem's dependencies in data_plane_api.gemspec
66gemspec
77
8- gem 'debug' # Ruby debugger
98gem 'minitest' , '~> 5.0' # Tests framework
109gem 'rake' , '~> 13.0' # Ruby automation tasks
1110gem 'rubocop' , '~> 1.21' # Ruby linter
1211gem 'rubocop-espago' , '~> 1.0' # Custom Ruby linter config
12+ gem 'solargraph' # Ruby language server
1313gem 'shoulda-context' , '~> 2.0' # Testing utilities
1414gem 'vcr' # Save HTTP interactions to files during tests
1515gem 'webmock' # Mock network interactions
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- data_plane_api (0.1.1 )
4+ data_plane_api (0.1.2 )
55 faraday (> 1 , < 3 )
66
77GEM
1010 addressable (2.8.1 )
1111 public_suffix (>= 2.0.2 , < 6.0 )
1212 ast (2.4.2 )
13+ backport (1.2.0 )
14+ benchmark (0.2.1 )
1315 crack (0.4.5 )
1416 rexml
15- debug (1.7.0 )
16- irb (>= 1.5.0 )
17- reline (>= 0.3.1 )
17+ diff-lcs (1.5.0 )
18+ e2mmap (0.1.0 )
1819 faraday (2.7.2 )
1920 faraday-net_http (>= 2.0 , < 3.1 )
2021 ruby2_keywords (>= 0.0.4 )
2122 faraday-net_http (3.0.2 )
2223 hashdiff (1.0.1 )
23- io-console (0.6.0 )
24- irb (1.6.1 )
25- reline (>= 0.3.0 )
24+ jaro_winkler (1.5.4 )
2625 json (2.6.3 )
26+ kramdown (2.4.0 )
27+ rexml
28+ kramdown-parser-gfm (1.1.0 )
29+ kramdown (~> 2.0 )
30+ mini_portile2 (2.8.1 )
2731 minitest (5.16.3 )
32+ nokogiri (1.13.10 )
33+ mini_portile2 (~> 2.8.0 )
34+ racc (~> 1.4 )
2835 parallel (1.22.1 )
2936 parser (3.1.3.0 )
3037 ast (~> 2.4.1 )
3138 public_suffix (5.0.1 )
39+ racc (1.6.1 )
3240 rainbow (3.1.1 )
3341 rake (13.0.6 )
3442 regexp_parser (2.6.1 )
35- reline ( 0.3.2 )
36- io-console ( ~> 0.5 )
43+ reverse_markdown ( 2.1.1 )
44+ nokogiri
3745 rexml (3.2.5 )
3846 rubocop (1.41.1 )
3947 json (~> 2.3 )
5260 ruby-progressbar (1.11.0 )
5361 ruby2_keywords (0.0.5 )
5462 shoulda-context (2.0.0 )
63+ solargraph (0.48.0 )
64+ backport (~> 1.2 )
65+ benchmark
66+ bundler (>= 1.17.2 )
67+ diff-lcs (~> 1.4 )
68+ e2mmap
69+ jaro_winkler (~> 1.5 )
70+ kramdown (~> 2.3 )
71+ kramdown-parser-gfm (~> 1.1 )
72+ parser (~> 3.0 )
73+ reverse_markdown (>= 1.0.5 , < 3 )
74+ rubocop (>= 0.52 )
75+ thor (~> 1.0 )
76+ tilt (~> 2.0 )
77+ yard (~> 0.9 , >= 0.9.24 )
78+ thor (1.2.1 )
79+ tilt (2.0.11 )
5580 unicode-display_width (2.3.0 )
5681 vcr (6.1.0 )
5782 webmock (3.18.1 )
5883 addressable (>= 2.8.0 )
5984 crack (>= 0.3.2 )
6085 hashdiff (>= 0.4.0 , < 2.0.0 )
86+ webrick (1.7.0 )
87+ yard (0.9.28 )
88+ webrick (~> 1.7.0 )
6189
6290PLATFORMS
6391 arm64-darwin-20
6492 x86_64-linux
6593
6694DEPENDENCIES
6795 data_plane_api !
68- debug
6996 minitest (~> 5.0 )
7097 rake (~> 13.0 )
7198 rubocop (~> 1.21 )
7299 rubocop-espago (~> 1.0 )
73100 shoulda-context (~> 2.0 )
101+ solargraph
74102 vcr
75103 webmock
76104
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ def initialize(
4343 @logger = logger
4444 @timeout = timeout
4545 @parent = parent
46+ @connection = nil
4647
4748 return unless global
4849
Original file line number Diff line number Diff line change 22
33module DataPlaneApi
44 # @return [String]
5- VERSION = '0.1.1 '
5+ VERSION = '0.1.2 '
66end
You can’t perform that action at this time.
0 commit comments