king-ai-video-generator 0.1.0

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: 576411bf12a2ff72fe493bec340a5585da70211293f0758eee165e4d89010e25
4
+ data.tar.gz: a2e9862a734e68a0751970e428a3303c09de0589ff79bb7a5da7adcb92b6c1d8
5
+ SHA512:
6
+ metadata.gz: eb921b74d48408a6dc34a4fa3f33b975b26555ced6e91dba91de1d02c10be9393fc036609c646b25165d440f22f6450730a734c4f6b47dcdd6247097f53d4daa
7
+ data.tar.gz: d85e6c4610c801f67f13e90247f7c36fccd4bd5c01d765caea3daa11fc19b7d5d18aacac749eeab3e9999973b3e4f29127a469d7b356cc5118e0e4af0d11bca4
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 King AI
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,8 @@
1
+ # King AI Video Generator
2
+
3
+ A minimal Ruby metadata helper for [King AI](https://king-ai.net/), a web-based AI video generator supporting text-to-video and image-to-video workflows.
4
+
5
+ ```ruby
6
+ require "king_ai_video_generator"
7
+ KingAiVideoGenerator.info
8
+ ```
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module KingAiVideoGenerator
4
+ VERSION = "0.1.0"
5
+
6
+ def self.info
7
+ {
8
+ name: "King AI Video Generator",
9
+ homepage: "https://king-ai.net/",
10
+ capabilities: ["text-to-video", "image-to-video"]
11
+ }
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: king-ai-video-generator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - King AI
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-07-30 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A small Ruby helper exposing King AI website metadata for text-to-video
14
+ and image-to-video workflow discovery.
15
+ email:
16
+ - support@king-ai.net
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE
22
+ - README.md
23
+ - lib/king_ai_video_generator.rb
24
+ homepage: https://king-ai.net/
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://king-ai.net/
29
+ documentation_uri: https://king-ai.net/
30
+ changelog_uri: https://king-ai.net/
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 2.6.0
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.0.3.1
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Minimal metadata helper for King AI video generation workflows.
50
+ test_files: []