retouch 0.1.0 → 0.3.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 +4 -4
- data/CHANGELOG.md +6 -2
- data/LICENSE +1 -1
- data/README.md +77 -30
- data/bench/retouch.rb +2 -1
- data/lib/retouch/batch.rb +62 -0
- data/lib/retouch/cli.rb +213 -54
- data/lib/retouch/io.rb +19 -1
- data/lib/retouch/operations.rb +477 -16
- data/lib/retouch/pipeline.rb +6 -1
- data/lib/retouch/version.rb +1 -1
- data/lib/retouch.rb +7 -2
- data/retouch.gemspec +2 -2
- data/sig/retouch.rbs +18 -4
- metadata +10 -6
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: retouch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yudai Takada
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: exe
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-09-25 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: tessel
|
|
@@ -99,8 +100,8 @@ dependencies:
|
|
|
99
100
|
- - "~>"
|
|
100
101
|
- !ruby/object:Gem::Version
|
|
101
102
|
version: '3.6'
|
|
102
|
-
description: A
|
|
103
|
-
|
|
103
|
+
description: A pure Ruby image editor and command line tool built on Tessel, with
|
|
104
|
+
optional animation, text, and visual diff integrations.
|
|
104
105
|
email:
|
|
105
106
|
- t.yudai92@gmail.com
|
|
106
107
|
executables:
|
|
@@ -116,6 +117,7 @@ files:
|
|
|
116
117
|
- bench/retouch.rb
|
|
117
118
|
- exe/retouch
|
|
118
119
|
- lib/retouch.rb
|
|
120
|
+
- lib/retouch/batch.rb
|
|
119
121
|
- lib/retouch/cli.rb
|
|
120
122
|
- lib/retouch/geometry.rb
|
|
121
123
|
- lib/retouch/gravity.rb
|
|
@@ -132,6 +134,7 @@ metadata:
|
|
|
132
134
|
homepage_uri: https://github.com/rbgfx/retouch
|
|
133
135
|
source_code_uri: https://github.com/rbgfx/retouch/tree/main
|
|
134
136
|
rubygems_mfa_required: 'true'
|
|
137
|
+
post_install_message:
|
|
135
138
|
rdoc_options: []
|
|
136
139
|
require_paths:
|
|
137
140
|
- lib
|
|
@@ -146,7 +149,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
149
|
- !ruby/object:Gem::Version
|
|
147
150
|
version: '0'
|
|
148
151
|
requirements: []
|
|
149
|
-
rubygems_version: 4.
|
|
152
|
+
rubygems_version: 3.4.19
|
|
153
|
+
signing_key:
|
|
150
154
|
specification_version: 4
|
|
151
|
-
summary: Ruby image
|
|
155
|
+
summary: Small Ruby image editing tools for PNG, PPM, and BMP
|
|
152
156
|
test_files: []
|