imagesart-ai 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 +13 -0
- data/lib/imagesart_ai.rb +12 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 7e57e869dd4c4f4dafe504c24c7bcb909d81a94080c3bb4e1f86f2fc1b86e7c1
|
|
4
|
+
data.tar.gz: c0c6fa99773c1510d97159a7b71449cf393ee88abacb3e10fde007d617d8c630
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 6df2f9f2e0e6ffb0ddea0f11749b4d9bc67e414fbe2141a07bb73f6bddfbcec192fa014a7baf124c36c4913fbc6266669ee2cbe52c6f3175763bfc8b275000ee
|
|
7
|
+
data.tar.gz: c90e5c18248ca7bece152dc5d5b9e85a72b5365a9d595a9075227471b1cc62ec4b5887e5832ed45c0cd76f5dc7de198a8a1a3493bcd1f4ceb839071f00c357f8
|
data/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# imagesart-ai
|
|
2
|
+
|
|
3
|
+
A tiny helper gem exposing the URL of the **ImagesArt** online AI photo editor.
|
|
4
|
+
|
|
5
|
+
ImagesArt is an [AI Image Editor](https://imagesart.ai/ai-edit-image) — a free
|
|
6
|
+
online AI photo editor with AI background remover and AI image editing tools.
|
|
7
|
+
|
|
8
|
+
```ruby
|
|
9
|
+
require "imagesart_ai"
|
|
10
|
+
ImagesartAi.editor_url # => "https://imagesart.ai/ai-edit-image"
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Homepage: https://imagesart.ai/ai-edit-image
|
data/lib/imagesart_ai.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# ImagesArt — AI image editor helper.
|
|
4
|
+
# See https://imagesart.ai/ai-edit-image
|
|
5
|
+
module ImagesartAi
|
|
6
|
+
VERSION = "0.1.0"
|
|
7
|
+
|
|
8
|
+
# URL of the ImagesArt AI image editor tool.
|
|
9
|
+
def self.editor_url
|
|
10
|
+
"https://imagesart.ai/ai-edit-image"
|
|
11
|
+
end
|
|
12
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: imagesart-ai
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- ImagesArt
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-06-04 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A tiny helper gem exposing the URL of the ImagesArt online AI photo editor
|
|
14
|
+
/ AI image editing tool. See https://imagesart.ai/ai-edit-image
|
|
15
|
+
email:
|
|
16
|
+
- support@imagesart.ai
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- README.md
|
|
22
|
+
- lib/imagesart_ai.rb
|
|
23
|
+
homepage: https://imagesart.ai/ai-edit-image
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata:
|
|
27
|
+
homepage_uri: https://imagesart.ai/ai-edit-image
|
|
28
|
+
source_code_uri: https://imagesart.ai/ai-edit-image
|
|
29
|
+
post_install_message:
|
|
30
|
+
rdoc_options: []
|
|
31
|
+
require_paths:
|
|
32
|
+
- lib
|
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - ">="
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: 2.4.0
|
|
38
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '0'
|
|
43
|
+
requirements: []
|
|
44
|
+
rubygems_version: 3.0.3.1
|
|
45
|
+
signing_key:
|
|
46
|
+
specification_version: 4
|
|
47
|
+
summary: Helper that points to the ImagesArt AI image editor.
|
|
48
|
+
test_files: []
|