gpt-image2ai-net-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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 694c7ffdc3f69ef4e2bca88aabe110f8007e58a97ca21aac5b68c46e54bb90e1
4
+ data.tar.gz: 272ff1290d7eeea6349059593a90a61fd38f8da96d7dcd18edc79bf85f1905db
5
+ SHA512:
6
+ metadata.gz: 3b61f31710ea76ff3ecd92f901734bc0c7f01af4483bf18b06c416fd841abb93a3bdeeb5a4535b7c0cd63506cbe70c4be387566cb2f672d37ce8dd5961cbf6bf
7
+ data.tar.gz: d0481ab4051a77f80c6f9ce636a94122eeb15f300636465b3ae17397926efd7d874b7e3392e99c2f372e9c0b7eb4fd774fed7915edd311dbd7aa0b438354ce8d
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 GPT Image2AI
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,18 @@
1
+ # gpt-image2ai-net-site-kit
2
+
3
+ Tiny package-ecosystem helper for [GPT Image2AI](https://gpt-image2ai.net).
4
+
5
+ It exposes the homepage, common URL builder helpers, and metadata for package registry documentation.
6
+
7
+ ## Links
8
+
9
+ - Homepage: https://gpt-image2ai.net
10
+ - Source: https://github.com/bbwdadfg/gpt-image2ai-net-site-kit
11
+
12
+ ## JavaScript
13
+
14
+ ```js
15
+ const kit = require('gpt-image2ai-net-site-kit');
16
+ console.log(kit.homepage());
17
+ console.log(kit.buildUrl('/pricing'));
18
+ ```
@@ -0,0 +1,13 @@
1
+ module GptImage2aiNetSiteKit
2
+ DOMAIN = "gpt-image2ai.net"
3
+ HOMEPAGE = "https://gpt-image2ai.net"
4
+
5
+ def self.homepage
6
+ HOMEPAGE
7
+ end
8
+
9
+ def self.build_url(path = "")
10
+ clean_path = path.to_s.sub(%r{^/+}, "")
11
+ clean_path.empty? ? HOMEPAGE : "#{HOMEPAGE}/#{clean_path}"
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gpt-image2ai-net-site-kit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - GPT Image2AI
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-05-20 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Small URL helpers for GPT Image2AI. Includes homepage metadata and URL
14
+ helpers.
15
+ email:
16
+ - hello@gpt-image2ai.net
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE
22
+ - README.md
23
+ - lib/gpt_image2ai_net_site_kit.rb
24
+ homepage: https://gpt-image2ai.net
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://gpt-image2ai.net
29
+ source_code_uri: https://github.com/bbwdadfg/gpt-image2ai-net-site-kit
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: Small URL helpers for GPT Image2AI.
49
+ test_files: []