aoc_cli 1.1.0 → 1.1.1
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/aoc_cli/core/request.rb +1 -1
- data/lib/aoc_cli/version.rb +1 -1
- data/sig/aoc_cli/core/request.rbs +5 -0
- data/sig/http.rbs +6 -0
- data/sig/open_ssl.rbs +13 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2535bd90be617c2f05d9b4542be5119239c8bb0f7e191594560ac5760cc6099
|
|
4
|
+
data.tar.gz: 0dbb1758fdd5656c92fbb5b7907b090a4815b822d9aac48478a22e95229bf50b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efef56f210de01b2294d1983262f23953a9f366cc234e6930243e15e2630009edbb7770358c2bc8eba9a862f17ab2ff260d549237b8064a724c2b6a836d7fe74
|
|
7
|
+
data.tar.gz: 5cea3ec9890e26be05d2ecadaa0ba186100e5c56f9483dfc862d0ae46601cbb11f6552362d06795df5ae288cc94ca2e282a54aafff88f6dd424b0f1c53208adb
|
data/Gemfile.lock
CHANGED
data/lib/aoc_cli/core/request.rb
CHANGED
data/lib/aoc_cli/version.rb
CHANGED
|
@@ -4,6 +4,7 @@ module AocCli
|
|
|
4
4
|
extend Forwardable
|
|
5
5
|
|
|
6
6
|
attr_reader client: HTTP::Client
|
|
7
|
+
attr_reader ssl_context: OpenSSL::SSL::SSLContext
|
|
7
8
|
|
|
8
9
|
def initialize: (token: String) -> void
|
|
9
10
|
|
|
@@ -24,6 +25,10 @@ module AocCli
|
|
|
24
25
|
private
|
|
25
26
|
|
|
26
27
|
def setup_client!: (String) -> HTTP::Client
|
|
28
|
+
|
|
29
|
+
def setup_ssl_context!: -> OpenSSL::SSL::SSLContext
|
|
30
|
+
|
|
31
|
+
def default_options: -> Hash[Symbol, untyped]
|
|
27
32
|
end
|
|
28
33
|
end
|
|
29
34
|
end
|
data/sig/http.rbs
CHANGED
data/sig/open_ssl.rbs
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aoc_cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Welham
|
|
@@ -244,6 +244,7 @@ files:
|
|
|
244
244
|
- sig/http.rbs
|
|
245
245
|
- sig/kangaru.rbs
|
|
246
246
|
- sig/nokogiri.rbs
|
|
247
|
+
- sig/open_ssl.rbs
|
|
247
248
|
- sig/reverse_markdown.rbs
|
|
248
249
|
homepage: https://github.com/apexatoll/aoc-cli
|
|
249
250
|
licenses:
|