Skip to content

Commit 1eeadfe

Browse files
author
Mateusz Drewniak
committed
v0.1.2
1 parent cff0e6d commit 1eeadfe

5 files changed

Lines changed: 42 additions & 13 deletions

File tree

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.3
1+
3.2.0

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ source 'https://rubygems.org'
55
# Specify your gem's dependencies in data_plane_api.gemspec
66
gemspec
77

8-
gem 'debug' # Ruby debugger
98
gem 'minitest', '~> 5.0' # Tests framework
109
gem 'rake', '~> 13.0' # Ruby automation tasks
1110
gem 'rubocop', '~> 1.21' # Ruby linter
1211
gem 'rubocop-espago', '~> 1.0' # Custom Ruby linter config
12+
gem 'solargraph' # Ruby language server
1313
gem 'shoulda-context', '~> 2.0' # Testing utilities
1414
gem 'vcr' # Save HTTP interactions to files during tests
1515
gem 'webmock' # Mock network interactions

Gemfile.lock

Lines changed: 38 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
data_plane_api (0.1.1)
4+
data_plane_api (0.1.2)
55
faraday (> 1, < 3)
66

77
GEM
@@ -10,30 +10,38 @@ GEM
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)
@@ -52,25 +60,45 @@ GEM
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

6290
PLATFORMS
6391
arm64-darwin-20
6492
x86_64-linux
6593

6694
DEPENDENCIES
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

lib/data_plane_api/configuration.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

lib/data_plane_api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
module DataPlaneApi
44
# @return [String]
5-
VERSION = '0.1.1'
5+
VERSION = '0.1.2'
66
end

0 commit comments

Comments
 (0)