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