geni3_org 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: 66ef836390516226f3ff4c56d5f65c0f9dfc7d0e8983e70b9846a6693c9f5fef
4
+ data.tar.gz: ce49bf3e8bc23b0890acb60635af254cba9b1d7fbaebdba23d3b48b6835acfad
5
+ SHA512:
6
+ metadata.gz: 2739825e79d4de0539305191cb058d73284df7e35a4d5d58b5de6ec791ca1b1b86db7eb37e11a0d5ee1aac160a95e3d52220ab4d7496ce2039db38c10116c13a
7
+ data.tar.gz: fa50b26085beb4ddb0b479ad47847ced5df386c344aa82fecf4f4981d10090de30b3b6699c5fcfcf0b0b44908c923da2a95bc0891628126b4df37018a75577ed
data/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # geni3_org
2
+
3
+ `geni3_org` is a minimal Ruby gem for the Geni3 AI video generator website.
4
+
5
+ - Homepage: https://www.geni3.org
6
+ - RubyGems: https://rubygems.org/gems/geni3_org
7
+ - RubyDoc: https://www.rubydoc.info/gems/geni3_org
@@ -0,0 +1,3 @@
1
+ module Geni3Org
2
+ VERSION = "0.1.0"
3
+ end
data/lib/geni3_org.rb ADDED
@@ -0,0 +1,14 @@
1
+ require_relative "geni3_org/version"
2
+
3
+ module Geni3Org
4
+ HOMEPAGE = "https://www.geni3.org".freeze
5
+ SUMMARY = "Geni3 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: geni3_org
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Geni3
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 Geni3 AI platform website and supports
14
+ RubyGems and RubyDoc indexing.
15
+ email:
16
+ - support@geni3.org
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - lib/geni3_org.rb
23
+ - lib/geni3_org/version.rb
24
+ homepage: https://www.geni3.org
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://www.geni3.org
29
+ source_code_uri: https://www.geni3.org
30
+ documentation_uri: https://www.rubydoc.info/gems/geni3_org
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 Geni3 AI platform site metadata.
50
+ test_files: []