rewords-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 +7 -0
- data/LICENSE +21 -0
- data/README.md +28 -0
- data/lib/rewords/site_kit.rb +40 -0
- metadata +46 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: db2b8fc66f4db090d273a8220b7e837561fa8500b2c2c17e8fc4c471e9a1a79b
|
|
4
|
+
data.tar.gz: 9a5beba9d82672f878f3bcdc8c1c8baa3e5aa64e620cbe11adad1b180381055f
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 8264b32953799070b35a184352ce4050f80d04a6ce25c0a75b720f0e4f95005b4709b46ef8bc372dfb349099ab0e6749b9264d962b97a0572870d72654bc6380
|
|
7
|
+
data.tar.gz: ec188aed2f271e7df62cc309d317451616f503c87b8fda637004e58831269a529e488404a15a3de6dd0465f5810914edd65b717cebde8a390b146e018a05360f
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ReWords AI
|
|
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,28 @@
|
|
|
1
|
+
# ReWords AI Site Kit
|
|
2
|
+
|
|
3
|
+
Small URL helpers for [ReWords AI](https://rewordsai.app), an AI image text editor for editing, replacing, removing, and translating text in photos and screenshots.
|
|
4
|
+
|
|
5
|
+
## Links
|
|
6
|
+
|
|
7
|
+
- Website: <https://rewordsai.app>
|
|
8
|
+
- [Tools directory](https://rewordsai.app/tools): browse all ReWords AI tools.
|
|
9
|
+
- [Edit text in image](https://rewordsai.app/edit-text-in-image): change on-image text while keeping layout.
|
|
10
|
+
- [Replace text in image](https://rewordsai.app/replace-text-in-image): swap words or phrases inside photos.
|
|
11
|
+
- [Remove text from image](https://rewordsai.app/remove-text-from-image): clean text overlays from images.
|
|
12
|
+
- [Photo text editor](https://rewordsai.app/photo-text-editor): edit text baked into photos.
|
|
13
|
+
- [Translate text in image](https://rewordsai.app/translate-text-in-image): translate on-image text into another language.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
This repository keeps tiny, installable helpers for package registry metadata and examples. Each package exposes the same small set of stable ReWords AI links.
|
|
18
|
+
|
|
19
|
+
## Install examples
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install rewords-site-kit
|
|
23
|
+
pip install rewords-site-kit
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
MIT
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
module Rewords
|
|
2
|
+
module SiteKit
|
|
3
|
+
BASE_URL = "https://rewordsai.app"
|
|
4
|
+
|
|
5
|
+
module_function
|
|
6
|
+
|
|
7
|
+
def home_url
|
|
8
|
+
BASE_URL
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def tool_url(slug = "")
|
|
12
|
+
clean = slug.to_s.gsub(%r{\A/+|/+\z}, "")
|
|
13
|
+
clean.empty? ? BASE_URL : "#{BASE_URL}/#{clean}"
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def tools_url
|
|
17
|
+
tool_url("tools")
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def edit_text_in_image_url
|
|
21
|
+
tool_url("edit-text-in-image")
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def replace_text_in_image_url
|
|
25
|
+
tool_url("replace-text-in-image")
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def remove_text_from_image_url
|
|
29
|
+
tool_url("remove-text-from-image")
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def photo_text_editor_url
|
|
33
|
+
tool_url("photo-text-editor")
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def translate_text_in_image_url
|
|
37
|
+
tool_url("translate-text-in-image")
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rewords-site-kit
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- ReWords AI
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Small URL helpers for ReWords AI, an AI image text editor at https://rewordsai.app.
|
|
13
|
+
email:
|
|
14
|
+
- support@rewordsai.app
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- LICENSE
|
|
20
|
+
- README.md
|
|
21
|
+
- lib/rewords/site_kit.rb
|
|
22
|
+
homepage: https://rewordsai.app
|
|
23
|
+
licenses:
|
|
24
|
+
- MIT
|
|
25
|
+
metadata:
|
|
26
|
+
homepage_uri: https://rewordsai.app
|
|
27
|
+
source_code_uri: https://github.com/bbwdadfg/rewords-site-kit
|
|
28
|
+
changelog_uri: https://github.com/bbwdadfg/rewords-site-kit/blob/main/CHANGELOG.md
|
|
29
|
+
rdoc_options: []
|
|
30
|
+
require_paths:
|
|
31
|
+
- lib
|
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '3.0'
|
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ">="
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
requirements: []
|
|
43
|
+
rubygems_version: 4.0.11
|
|
44
|
+
specification_version: 4
|
|
45
|
+
summary: Small URL helpers for ReWords AI.
|
|
46
|
+
test_files: []
|