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