vo4ai_art 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 (5) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +22 -0
  4. data/lib/vo4ai_art.rb +14 -0
  5. metadata +45 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '039fd37b192c09bb8d69be780a40eff330ce80d7a972128d5719cefea281f9a7'
4
+ data.tar.gz: 67c86e9f829b589c236899d19398cda2a608abc8a7d382ccb9c056d9897b7f9f
5
+ SHA512:
6
+ metadata.gz: 2276f01e640be77a84ece3a4ed3af237632eb1df2dce1308b5f45b87f7c50b6701d232dee6ea6201b8419ea5d0b93572b4afeefcd99b65c3ed680bda97e7e267
7
+ data.tar.gz: 5415434837cff3d5fc7ff0bc7a2209d420c5c9d01f4451f90c820e9fc4116826dab50fb46d1dc2f2b2eb59ed0a96f28ac751709a6d489b82e05e63f8cec96f1e
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # Vo4aiArt (Ruby gem)
2
+
3
+ https://vo4ai.art official website backlink gem.
4
+
5
+ ## Official Website
6
+
7
+ Visit: [https://vo4ai.art](https://vo4ai.art)
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ gem install vo4ai_art
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```ruby
18
+ require "vo4ai_art"
19
+
20
+ info = Vo4aiArt.info
21
+ puts info.website
22
+ ```
data/lib/vo4ai_art.rb ADDED
@@ -0,0 +1,14 @@
1
+ module Vo4aiArt
2
+ VERSION = "0.1.0".freeze
3
+ WEBSITE = "https://vo4ai.art"
4
+
5
+ Info = Struct.new(:name, :version, :website, :description)
6
+
7
+ def self.info
8
+ Info.new("Vo4aiArt", VERSION, WEBSITE, "https://vo4ai.art official website backlink gem.")
9
+ end
10
+
11
+ def self.website
12
+ WEBSITE
13
+ end
14
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vo4ai_art
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ai studio
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-03-04 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: https://vo4ai.art official website backlink gem.
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - LICENSE
20
+ - README.md
21
+ - lib/vo4ai_art.rb
22
+ homepage: https://vo4ai.art
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ post_install_message:
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: '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: 3.0.3.1
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: https://vo4ai.art official website backlink gem.
45
+ test_files: []