kubetail 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f1dbde35a45f66d4e59fabfa442a014119a1b9f675ccd7a6ca6f76a4246f82b0
4
+ data.tar.gz: 2a0c9c20a692bd0b281b42435610e47b8bcc9493ef62084a659dbd16f0eb03d8
5
+ SHA512:
6
+ metadata.gz: 006eefdca92c65dcc3538f0e390098936cfd5e922011628ff395ac783653dc4c5673310d6657ace461267819b824c02ce9029c22899234afd1023a0816a9c1b4
7
+ data.tar.gz: f0ea0f96e87c032ad5aa66ea5c14741a2e96193c05902f18871e412963937bc57ce53d7a9c36be65fb623fa6f15071525123432697556428008a884116c6c809
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Kubetail
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # Kubetail Ruby SDK
2
+
3
+ Official Ruby SDK for Kubetail.
4
+
5
+ ## Status
6
+
7
+ ⚠️ **Coming Soon** - This is a placeholder gem. The full SDK is under development.
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'kubetail'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ ```bash
20
+ bundle install
21
+ ```
22
+
23
+ Or install it yourself as:
24
+
25
+ ```bash
26
+ gem install kubetail
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ ```ruby
32
+ require 'kubetail'
33
+
34
+ puts Kubetail.status
35
+ # => "coming soon"
36
+ ```
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kubetail
4
+ VERSION = "0.0.1"
5
+ end
data/lib/kubetail.rb ADDED
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "kubetail/version"
4
+
5
+ module Kubetail
6
+ class Error < StandardError; end
7
+
8
+ def self.status
9
+ "coming soon"
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kubetail
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Kubetail
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-12-08 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Official Ruby SDK for Kubetail - placeholder for future release
14
+ email:
15
+ - info@kubetail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE
21
+ - README.md
22
+ - lib/kubetail.rb
23
+ - lib/kubetail/version.rb
24
+ homepage: https://github.com/kubetail-com/libkubetail
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://github.com/kubetail-com/libkubetail
29
+ source_code_uri: https://github.com/kubetail-com/libkubetail
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 2.7.0
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.0.3.1
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Kubetail Ruby SDK - Coming Soon
49
+ test_files: []