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