wan3video-site-kit 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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/wan3video_site_kit.rb +10 -0
  3. metadata +44 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d8a765ff1766ebe1e4370ae1011258862dfb2c0e8d12fb73ee14507a59153079
4
+ data.tar.gz: '052836af08d342a20c4d3ca56720671040bc97e6208d5aa23d8e3dc2c61b218f'
5
+ SHA512:
6
+ metadata.gz: 382159caded3a0e43fdc311f871aef55c7cb06d6bde201e31c92adf44f4339c29eb6aeea9d8e196301cd204242bd1bad443d50a7d2de39574a57cd92ecb857d5
7
+ data.tar.gz: ff1e3cd0d7d9024b60170b19e42053388a940ace55338a2077b843bd21ffa755688b36e6b15ab8400690a57648ff0e2140518e991132e6113f60011622e18078
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+ module Wan3videoSiteKit
3
+ BASE = "https://wan3video.art"
4
+ BRAND = "WAN 3.0 Video"
5
+ def self.home_url = "#{BASE}/"
6
+ def self.page_url(path = "/")
7
+ p = path.to_s.start_with?("/") ? path : "/#{path}"
8
+ "#{BASE}#{p == "/" ? "/" : p.sub(%r{/+\z}, "")}"
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wan3video-site-kit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - WAN 3.0 Video
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: URL helpers and metadata utilities for WAN 3.0 Video AI text-to-video
13
+ and image-to-video studio
14
+ email:
15
+ - support@wan3video.art
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/wan3video_site_kit.rb
21
+ homepage: https://wan3video.art
22
+ licenses:
23
+ - MIT
24
+ metadata:
25
+ source_code_uri: https://github.com/bbwdadfg/wan3video-site-kit
26
+ homepage_uri: https://wan3video.art
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '3.0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubygems_version: 4.0.11
42
+ specification_version: 4
43
+ summary: URL helpers for WAN 3.0 Video
44
+ test_files: []