viddiai-com 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 +7 -0
- data/README.md +43 -0
- data/lib/viddiai_com.rb +34 -0
- metadata +49 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: cd7dda4c06b909f006807703b92cfd66358bd9ecec78ddce4cba50e2ff8c177b
|
|
4
|
+
data.tar.gz: 7b5519f5341aae57d9c3cb4b35f34b23c6549f6b26ddd6189111e8f943322074
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: aa69df2577783afb39963b52a2e53671386b8e5ff8e4154066fc134d10fdc11970ffbef43220233050551d9d036abce045cf7d2f5c18ad1ef6ecf2f049f0e1a1
|
|
7
|
+
data.tar.gz: a2318e74c59e8cf35383ab5c02e6bbee4c813dba3544aa0e93f67c706682c592e7449ec4ae6bcf8e678f8bc693ec3dc6e554fc02b3d685fc6fb817fb2bdf6628
|
data/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# viddiai-com
|
|
2
|
+
|
|
3
|
+
Ruby integration package for [Viddi AI](https://viddiai.com) — the all-in-one
|
|
4
|
+
AI creative agent that generates **video, images, and music** from one platform
|
|
5
|
+
with shared credits.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
gem install viddiai-com
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or add to your `Gemfile`:
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
gem "viddiai-com"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
require "viddiai_com"
|
|
23
|
+
|
|
24
|
+
puts ViddiaiCom.hello
|
|
25
|
+
puts ViddiaiCom.homepage # => https://viddiai.com
|
|
26
|
+
puts ViddiaiCom.build_url("sunset") # deep link back to https://viddiai.com
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## About Viddi AI
|
|
30
|
+
|
|
31
|
+
Viddi AI is an all-in-one AI creative suite. Describe your idea, pick a medium —
|
|
32
|
+
video, image, or music — and get publish-ready output in seconds. All three
|
|
33
|
+
capabilities share one credit pool, so you skip separate subscriptions for
|
|
34
|
+
text-to-video, image generation, and AI music.
|
|
35
|
+
|
|
36
|
+
## Links
|
|
37
|
+
|
|
38
|
+
- Website: https://viddiai.com
|
|
39
|
+
- Source: https://github.com/youram470-art/viddiai-com-ruby
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
MIT
|
data/lib/viddiai_com.rb
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
module ViddiaiCom
|
|
2
|
+
VERSION = "0.1.0"
|
|
3
|
+
HOMEPAGE = "https://viddiai.com"
|
|
4
|
+
NAME = "Viddi AI"
|
|
5
|
+
DESCRIPTION = "All-in-one AI creative agent for video, image, and music generation."
|
|
6
|
+
|
|
7
|
+
KEYWORDS = [
|
|
8
|
+
"viddi ai",
|
|
9
|
+
"ai video generator",
|
|
10
|
+
"text to video ai",
|
|
11
|
+
"ai image generator",
|
|
12
|
+
"ai music generator",
|
|
13
|
+
"all-in-one ai creative tool",
|
|
14
|
+
"ai content generator agent"
|
|
15
|
+
].freeze
|
|
16
|
+
|
|
17
|
+
def self.hello
|
|
18
|
+
"hello from viddiai.com"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def self.homepage
|
|
22
|
+
HOMEPAGE
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
# Build a deep link back to https://viddiai.com with optional prompt + UTM.
|
|
26
|
+
def self.build_url(prompt = nil)
|
|
27
|
+
if prompt.nil? || prompt.to_s.strip.empty?
|
|
28
|
+
"#{HOMEPAGE}/?utm_source=viddiai-com-gem&utm_medium=rubygems"
|
|
29
|
+
else
|
|
30
|
+
encoded = prompt.to_s.strip.gsub(" ", "+")
|
|
31
|
+
"#{HOMEPAGE}/?prompt=#{encoded}&utm_source=viddiai-com-gem&utm_medium=rubygems"
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: viddiai-com
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Viddi AI
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-07-14 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Metadata, keyword, and deep-link helper package for Viddi AI (https://viddiai.com),
|
|
14
|
+
the all-in-one AI creative agent for video, image, and music generation.
|
|
15
|
+
email:
|
|
16
|
+
- support@viddiai.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- README.md
|
|
22
|
+
- lib/viddiai_com.rb
|
|
23
|
+
homepage: https://viddiai.com
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata:
|
|
27
|
+
homepage_uri: https://viddiai.com
|
|
28
|
+
source_code_uri: https://github.com/youram470-art/viddiai-com-ruby
|
|
29
|
+
documentation_uri: https://viddiai.com
|
|
30
|
+
post_install_message:
|
|
31
|
+
rdoc_options: []
|
|
32
|
+
require_paths:
|
|
33
|
+
- lib
|
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0'
|
|
44
|
+
requirements: []
|
|
45
|
+
rubygems_version: 3.0.3.1
|
|
46
|
+
signing_key:
|
|
47
|
+
specification_version: 4
|
|
48
|
+
summary: Integration helper for Viddi AI (https://viddiai.com)
|
|
49
|
+
test_files: []
|