veo_3_5 0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c5ea248a9d7512c6679ab9455c8baab11b29fad60307d46b252800ff7e438943
4
+ data.tar.gz: c63572511db499ab39bccbeb6c529f0bc07fc84d24c29f7676c803c3dfa309a0
5
+ SHA512:
6
+ metadata.gz: 66aeebb0fcf7fbc41fbd96596a3993d16b790cf144089c50e42d0bc28cb10a21384a0b1205b6f4a2601a8964796c22c04077c91ed2a3c9fb9eb263294f592feb
7
+ data.tar.gz: e7c365168615f9e16e3580b3b776e487b4bf59c33d03b707070e2a8ec1e2a6c537810749d1ffdfaf2926d0de51cda4614f5b4e79875d44bb29af7f0cc200271d
data/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # veo_3_5
2
+
3
+ `veo_3_5` is a minimal Ruby gem for the Veo 3.5 AI video generator website.
4
+
5
+ - Homepage: https://www.voe35.com
6
+ - RubyGems: https://rubygems.org/gems/veo_3_5
7
+ - RubyDoc: https://www.rubydoc.info/gems/veo_3_5
@@ -0,0 +1,3 @@
1
+ module Veo35
2
+ VERSION = "0.1.1"
3
+ end
data/lib/veo_3_5.rb ADDED
@@ -0,0 +1,14 @@
1
+ require_relative "veo_3_5/version"
2
+
3
+ module Veo35
4
+ HOMEPAGE = "https://www.voe35.com".freeze
5
+ SUMMARY = "Veo 3.5 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: veo_3_5
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Veo 3.5
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-05-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A minimal Ruby gem that points to the Veo 3.5 tool page and supports
14
+ RubyGems and RubyDoc indexing.
15
+ email:
16
+ - support@voe35.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - lib/veo_3_5.rb
23
+ - lib/veo_3_5/version.rb
24
+ homepage: https://www.voe35.com
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://www.voe35.com
29
+ source_code_uri: https://www.voe35.com
30
+ documentation_uri: https://www.rubydoc.info/gems/veo_3_5
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 Veo 3.5 tool page metadata.
50
+ test_files: []