genie3_info 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: b2ecf477ec6c46a0f16f1661011cc1b991bc9d17840ce8350009e9b7b15985be
4
+ data.tar.gz: 2b65402bb00b058f0a8435f2ff173bb34807b2221c8edca1426b71fae6d723f1
5
+ SHA512:
6
+ metadata.gz: 1354fc21ea9acd0c6edade0b0095cb7f2f37a4d5ad44550cb08d435f50f42f56a45042e0c98b215285c886fdd18188fdaa832d9eca810a11ea344c3c89ba1f91
7
+ data.tar.gz: cf74405058755c8084ce4c385c4bfb6b5b509933c59c5ae46d8507413b9371d7510830aab51025d2546275fff5b50a7438710d1fad772597df92755b4b7a2937
data/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # genie3_info
2
+
3
+ `genie3_info` is a minimal Ruby gem for the Genie3 AI video generator website.
4
+
5
+ - Homepage: https://www.genie3.info
6
+ - RubyGems: https://rubygems.org/gems/genie3_info
7
+ - RubyDoc: https://www.rubydoc.info/gems/genie3_info
@@ -0,0 +1,3 @@
1
+ module Genie3Info
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,14 @@
1
+ require_relative "genie3_info/version"
2
+
3
+ module Genie3Info
4
+ HOMEPAGE = "https://www.genie3.info".freeze
5
+ SUMMARY = "Genie3 is an AI video generator for text-to-video and image-to-video workflows.".freeze
6
+
7
+ def self.homepage
8
+ HOMEPAGE
9
+ end
10
+
11
+ def self.summary
12
+ SUMMARY
13
+ end
14
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: genie3_info
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Genie3
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-04-13 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A minimal Ruby gem that points to the Genie3 AI platform website and
14
+ supports RubyGems and RubyDoc indexing.
15
+ email:
16
+ - support@genie3.info
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - lib/genie3_info.rb
23
+ - lib/genie3_info/version.rb
24
+ homepage: https://www.genie3.info
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://www.genie3.info
29
+ source_code_uri: https://www.genie3.info
30
+ documentation_uri: https://www.rubydoc.info/gems/genie3_info
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 Ruby gem for Genie3 AI platform site metadata.
50
+ test_files: []