thingfish-processor-image 0.2.1 → 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 +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.md +11 -0
- data/Manifest.txt +0 -1
- data/README.md +10 -10
- data/Rakefile +5 -94
- data/lib/thingfish/processor/image.rb +2 -2
- metadata +50 -136
- metadata.gz.sig +0 -0
- data/ChangeLog +0 -70
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: da0621ceab781b3973956b672ccf3a5f88b01634170a44db8d828a0469ed09c8
|
4
|
+
data.tar.gz: ec4a6083dc4f6160185cc0a9a121072306cf2d0a3ffce471af061a90ec8b613f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9819332ffc1f3bd454fb48a058247025deffd97c67cd3efa885188eca16ba563443ae0ae6b1e060080d85fd14a2670495c998a93827b1f319cede860a7a6acdf
|
7
|
+
data.tar.gz: 901aedd55de05eea925bd077f7821bc0346378ff2553e2a46c6da0ab80e79230e468cf6eff8a7de742e5fde673bf86178b70e7a3baf941d1088466b59f415807
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
# Release History for thingfish-processor-image
|
2
|
+
|
3
|
+
---
|
4
|
+
|
5
|
+
## v0.3.0 [2021-01-03] Michael Granger <ged@FaerieMUD.org>
|
6
|
+
|
7
|
+
Enhancements:
|
8
|
+
|
9
|
+
- Update for newest ImageMagick/RMagick
|
10
|
+
|
11
|
+
|
1
12
|
## v0.2.1 [2016-11-16] Mahlon E. Smith <mahlon@martini.nu>
|
2
13
|
|
3
14
|
Bugfix: Default configured value now is processed correctly by
|
data/Manifest.txt
CHANGED
data/README.md
CHANGED
@@ -20,11 +20,6 @@ It extracts image-related metadata from uploaded media files, and generates one
|
|
20
20
|
or more thumbnail images as related resources.
|
21
21
|
|
22
22
|
|
23
|
-
## Authors
|
24
|
-
|
25
|
-
* Michael Granger <ged@FaerieMUD.org>
|
26
|
-
|
27
|
-
|
28
23
|
## Installation
|
29
24
|
|
30
25
|
This plugin relies on [ImageMagick](http://www.imagemagick.org/), so you'll
|
@@ -57,15 +52,20 @@ Here's an example configuration file that enables this plugin.
|
|
57
52
|
## Contributing
|
58
53
|
|
59
54
|
You can check out the current development source with Mercurial via its
|
60
|
-
|
61
|
-
{its Github mirror}[https://github.com/ged/thingfish-processor-image].
|
55
|
+
[project page](https://gitlab.com/ravngroup/open-source/ruby-zyre).
|
62
56
|
|
63
57
|
After checking out the source, run:
|
64
58
|
|
65
|
-
$
|
59
|
+
$ gem install -Ng
|
60
|
+
$ rake setup
|
66
61
|
|
67
|
-
This
|
68
|
-
|
62
|
+
This will install dependencies, and do any other necessary setup for
|
63
|
+
development.
|
64
|
+
|
65
|
+
|
66
|
+
## Authors
|
67
|
+
|
68
|
+
* Michael Granger <ged@FaerieMUD.org>
|
69
69
|
|
70
70
|
|
71
71
|
## License
|
data/Rakefile
CHANGED
@@ -1,99 +1,10 @@
|
|
1
|
-
|
1
|
+
# -*- ruby -*-
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
|
4
|
-
require 'hoe'
|
5
|
-
rescue LoadError
|
6
|
-
abort "This Rakefile requires hoe (gem install hoe)"
|
7
|
-
end
|
8
|
-
|
9
|
-
GEMSPEC = 'thingfish-processor-image.gemspec'
|
10
|
-
|
11
|
-
|
12
|
-
Hoe.plugin :mercurial
|
13
|
-
Hoe.plugin :signing
|
14
|
-
Hoe.plugin :deveiate
|
15
|
-
|
16
|
-
Hoe.plugins.delete :rubyforge
|
17
|
-
|
18
|
-
hoespec = Hoe.spec 'thingfish-processor-image' do |spec|
|
19
|
-
spec.readme_file = 'README.md'
|
20
|
-
spec.history_file = 'History.md'
|
21
|
-
spec.extra_rdoc_files = FileList[ '*.rdoc', '*.md' ]
|
22
|
-
spec.urls = {
|
23
|
-
home: 'https://bitbucket.org/ged/thingfish-processor-image',
|
24
|
-
code: 'https://bitbucket.org/ged/thingfish-processor-image',
|
25
|
-
docs: 'https://deveiate.org/code/thingfish-processor-image',
|
26
|
-
github: 'https://github.com/ged/thingfish-processor-image',
|
27
|
-
}
|
28
|
-
|
29
|
-
spec.extra_rdoc_files = FileList[ '*.rdoc', '*.md' ]
|
30
|
-
spec.license 'BSD-3-Clause'
|
31
|
-
|
32
|
-
spec.developer 'Michael Granger', 'ged@FaerieMUD.org'
|
33
|
-
|
34
|
-
spec.dependency 'thingfish', '~> 0.6'
|
35
|
-
spec.dependency 'loggability', '~> 0.11'
|
36
|
-
spec.dependency 'rmagick', '~> 2.16'
|
37
|
-
|
38
|
-
spec.dependency 'hoe-deveiate', '~> 0.3', :developer
|
39
|
-
spec.dependency 'simplecov', '~> 0.7', :developer
|
40
|
-
spec.dependency 'rdoc-generator-fivefish', '~> 0.1', :developer
|
41
|
-
|
42
|
-
spec.require_ruby_version( '>=2.3.1' )
|
43
|
-
spec.hg_sign_tags = true if spec.respond_to?( :hg_sign_tags= )
|
44
|
-
spec.check_history_on_release = true if spec.respond_to?( :check_history_on_release= )
|
45
|
-
|
46
|
-
self.rdoc_locations << "deveiate:/usr/local/www/public/code/#{remote_rdoc_dir}"
|
47
|
-
end
|
48
|
-
|
49
|
-
|
50
|
-
ENV['VERSION'] ||= hoespec.spec.version.to_s
|
51
|
-
|
52
|
-
# Run the tests before checking in
|
53
|
-
task 'hg:precheckin' => [ :check_history, :check_manifest, :gemspec, :spec ]
|
54
|
-
|
55
|
-
task :test => :spec
|
56
|
-
|
57
|
-
# Rebuild the ChangeLog immediately before release
|
58
|
-
task :prerelease => 'ChangeLog'
|
59
|
-
CLOBBER.include( 'ChangeLog' )
|
4
|
+
require 'rake/deveiate'
|
60
5
|
|
61
|
-
desc "Build a coverage report"
|
62
|
-
task :coverage do
|
63
|
-
ENV["COVERAGE"] = 'yes'
|
64
|
-
Rake::Task[:spec].invoke
|
65
|
-
end
|
66
|
-
CLOBBER.include( 'coverage' )
|
67
|
-
|
68
|
-
|
69
|
-
# Use the fivefish formatter for docs generated from development checkout
|
70
|
-
if File.directory?( '.hg' )
|
71
|
-
require 'rdoc/task'
|
72
6
|
|
73
|
-
|
74
|
-
|
75
|
-
rdoc.main = "README.rdoc"
|
76
|
-
rdoc.markup = 'markdown'
|
77
|
-
rdoc.rdoc_files.include( "*.rdoc", "ChangeLog", "lib/**/*.rb" )
|
78
|
-
rdoc.generator = :fivefish
|
79
|
-
rdoc.title = 'Thingfish-Processor-Image'
|
80
|
-
rdoc.rdoc_dir = 'doc'
|
81
|
-
end
|
7
|
+
Rake::DevEiate.setup( 'thingfish-processor-image' ) do |project|
|
8
|
+
project.publish_to = 'deveiate:/usr/local/www/public/code'
|
82
9
|
end
|
83
10
|
|
84
|
-
task :gemspec => GEMSPEC
|
85
|
-
file GEMSPEC => __FILE__
|
86
|
-
task GEMSPEC do |task|
|
87
|
-
spec = $hoespec.spec
|
88
|
-
spec.files.delete( '.gemtest' )
|
89
|
-
spec.signing_key = nil
|
90
|
-
spec.cert_chain = Dir.glob( 'certs/*.pem' )
|
91
|
-
spec.version = "#{spec.version.bump}.0.pre#{Time.now.strftime("%Y%m%d%H%M%S")}"
|
92
|
-
File.open( task.name, 'w' ) do |fh|
|
93
|
-
fh.write( spec.to_ruby )
|
94
|
-
end
|
95
|
-
end
|
96
|
-
CLOBBER.include( GEMSPEC.to_s )
|
97
|
-
|
98
|
-
task :default => :gemspec
|
99
|
-
|
@@ -18,10 +18,10 @@ class Thingfish::Processor::Image < Thingfish::Processor
|
|
18
18
|
|
19
19
|
|
20
20
|
# Package version
|
21
|
-
VERSION = '0.
|
21
|
+
VERSION = '0.3.0'
|
22
22
|
|
23
23
|
# Version control revision
|
24
|
-
REVISION = %q$Revision
|
24
|
+
REVISION = %q$Revision$
|
25
25
|
|
26
26
|
|
27
27
|
# Loggability API -- log to the :angelfish logger
|
metadata
CHANGED
@@ -1,101 +1,62 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thingfish-processor-image
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
13
|
+
MIID+DCCAmCgAwIBAgIBAzANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
|
14
|
+
REM9RmFlcmllTVVEL0RDPW9yZzAeFw0yMDEyMjQyMDU1MjlaFw0yMTEyMjQyMDU1
|
15
|
+
MjlaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
|
16
|
+
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
|
17
|
+
L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
|
18
|
+
M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
|
19
|
+
5PU2AEbf04GGSrmqADGWXeaslaoRdb1fu/0M5qfPTRn5V39sWD9umuDAF9qqil/x
|
20
|
+
Sl6phTvgBrG8GExHbNZpLARd3xrBYLEFsX7RvBn2UPfgsrtvpdXjsHGfpT3IPN+B
|
21
|
+
vQ66lts4alKC69TE5cuKasWBm+16A4aEe3XdZBRNmtOu/g81gvwA7fkJHKllJuaI
|
22
|
+
dXzdHqq+zbGZVSQ7pRYHYomD0IiDe1DbIouFnPWmagaBnGHwXkDT2bKKP+s2v21m
|
23
|
+
ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
|
24
|
+
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYD
|
25
|
+
VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DANBgkqhkiG
|
26
|
+
9w0BAQsFAAOCAYEAMYegZanJi8zq7QKPT7wqXefX4C88I5JWeBHR3PvvWK0CwyMV
|
27
|
+
peyiu5I13w/lYX+HUZjE4qsSpJMJFXWl4WZCOo+AMprOcf0PxfuJpxCej5D4tavf
|
28
|
+
vRfhahSw7XJrcZih/3J+/UgoH7R05MJ+8LTcy3HGrB3a0vTafjm8OY7Xpa0LJDoN
|
29
|
+
JDqxK321VIHyTibbKeA1hWSE6ljlQDvFbTqiCj3Ulp1jTv3TOlvRl8fqcfhxUJI0
|
30
|
+
+5Q82jJODjEN+GaWs0V+NlrbU94cXwS2PH5dXogftB5YYA5Ex8A0ikZ73xns4Hdo
|
31
|
+
XxdLdd92F5ovxA23j/rKe/IDwqr6FpDkU3nPXH/Qp0TVGv9zZnVJc/Z6ChkuWj8z
|
32
|
+
pW7JAyyiiHZgKKDReDrA2LA7Zs3o/7KA6UtUH0FHf8LYhcK+pfHk6RtjRe65ffw+
|
33
|
+
MCh97sQ/Z/MOusb5+QddBmB+k8EicXyGNl4b5L4XpL7fIQu+Y96TB3JEJlShxFD9
|
34
|
+
k9FjI4d9EP54gS/4
|
32
35
|
-----END CERTIFICATE-----
|
33
|
-
date:
|
36
|
+
date: 2021-01-03 00:00:00.000000000 Z
|
34
37
|
dependencies:
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: thingfish
|
37
|
-
requirement: !ruby/object:Gem::Requirement
|
38
|
-
requirements:
|
39
|
-
- - "~>"
|
40
|
-
- !ruby/object:Gem::Version
|
41
|
-
version: '0.6'
|
42
|
-
type: :runtime
|
43
|
-
prerelease: false
|
44
|
-
version_requirements: !ruby/object:Gem::Requirement
|
45
|
-
requirements:
|
46
|
-
- - "~>"
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: '0.6'
|
49
|
-
- !ruby/object:Gem::Dependency
|
50
|
-
name: loggability
|
51
|
-
requirement: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - "~>"
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version: '0.11'
|
56
|
-
type: :runtime
|
57
|
-
prerelease: false
|
58
|
-
version_requirements: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - "~>"
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '0.11'
|
63
38
|
- !ruby/object:Gem::Dependency
|
64
39
|
name: rmagick
|
65
40
|
requirement: !ruby/object:Gem::Requirement
|
66
41
|
requirements:
|
67
42
|
- - "~>"
|
68
43
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
44
|
+
version: '4.1'
|
70
45
|
type: :runtime
|
71
46
|
prerelease: false
|
72
47
|
version_requirements: !ruby/object:Gem::Requirement
|
73
48
|
requirements:
|
74
49
|
- - "~>"
|
75
50
|
- !ruby/object:Gem::Version
|
76
|
-
version: '
|
51
|
+
version: '4.1'
|
77
52
|
- !ruby/object:Gem::Dependency
|
78
|
-
name:
|
79
|
-
requirement: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - "~>"
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: '1.4'
|
84
|
-
type: :development
|
85
|
-
prerelease: false
|
86
|
-
version_requirements: !ruby/object:Gem::Requirement
|
87
|
-
requirements:
|
88
|
-
- - "~>"
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
version: '1.4'
|
91
|
-
- !ruby/object:Gem::Dependency
|
92
|
-
name: hoe-deveiate
|
53
|
+
name: thingfish
|
93
54
|
requirement: !ruby/object:Gem::Requirement
|
94
55
|
requirements:
|
95
56
|
- - "~>"
|
96
57
|
- !ruby/object:Gem::Version
|
97
58
|
version: '0.8'
|
98
|
-
type: :
|
59
|
+
type: :runtime
|
99
60
|
prerelease: false
|
100
61
|
version_requirements: !ruby/object:Gem::Requirement
|
101
62
|
requirements:
|
@@ -103,94 +64,46 @@ dependencies:
|
|
103
64
|
- !ruby/object:Gem::Version
|
104
65
|
version: '0.8'
|
105
66
|
- !ruby/object:Gem::Dependency
|
106
|
-
name:
|
107
|
-
requirement: !ruby/object:Gem::Requirement
|
108
|
-
requirements:
|
109
|
-
- - "~>"
|
110
|
-
- !ruby/object:Gem::Version
|
111
|
-
version: '0.2'
|
112
|
-
type: :development
|
113
|
-
prerelease: false
|
114
|
-
version_requirements: !ruby/object:Gem::Requirement
|
115
|
-
requirements:
|
116
|
-
- - "~>"
|
117
|
-
- !ruby/object:Gem::Version
|
118
|
-
version: '0.2'
|
119
|
-
- !ruby/object:Gem::Dependency
|
120
|
-
name: simplecov
|
67
|
+
name: rake-deveiate
|
121
68
|
requirement: !ruby/object:Gem::Requirement
|
122
69
|
requirements:
|
123
70
|
- - "~>"
|
124
71
|
- !ruby/object:Gem::Version
|
125
|
-
version: '0.
|
72
|
+
version: '0.17'
|
126
73
|
type: :development
|
127
74
|
prerelease: false
|
128
75
|
version_requirements: !ruby/object:Gem::Requirement
|
129
76
|
requirements:
|
130
77
|
- - "~>"
|
131
78
|
- !ruby/object:Gem::Version
|
132
|
-
version: '0.
|
79
|
+
version: '0.17'
|
133
80
|
- !ruby/object:Gem::Dependency
|
134
81
|
name: rdoc-generator-fivefish
|
135
82
|
requirement: !ruby/object:Gem::Requirement
|
136
83
|
requirements:
|
137
84
|
- - "~>"
|
138
85
|
- !ruby/object:Gem::Version
|
139
|
-
version: '0.
|
140
|
-
type: :development
|
141
|
-
prerelease: false
|
142
|
-
version_requirements: !ruby/object:Gem::Requirement
|
143
|
-
requirements:
|
144
|
-
- - "~>"
|
145
|
-
- !ruby/object:Gem::Version
|
146
|
-
version: '0.1'
|
147
|
-
- !ruby/object:Gem::Dependency
|
148
|
-
name: rdoc
|
149
|
-
requirement: !ruby/object:Gem::Requirement
|
150
|
-
requirements:
|
151
|
-
- - "~>"
|
152
|
-
- !ruby/object:Gem::Version
|
153
|
-
version: '4.0'
|
86
|
+
version: '0.4'
|
154
87
|
type: :development
|
155
88
|
prerelease: false
|
156
89
|
version_requirements: !ruby/object:Gem::Requirement
|
157
90
|
requirements:
|
158
91
|
- - "~>"
|
159
92
|
- !ruby/object:Gem::Version
|
160
|
-
version: '4
|
161
|
-
-
|
162
|
-
|
163
|
-
|
164
|
-
requirements:
|
165
|
-
- - "~>"
|
166
|
-
- !ruby/object:Gem::Version
|
167
|
-
version: '3.15'
|
168
|
-
type: :development
|
169
|
-
prerelease: false
|
170
|
-
version_requirements: !ruby/object:Gem::Requirement
|
171
|
-
requirements:
|
172
|
-
- - "~>"
|
173
|
-
- !ruby/object:Gem::Version
|
174
|
-
version: '3.15'
|
175
|
-
description: |-
|
176
|
-
This is a basic image-processor plugin for the Thingfish digital asset manager.
|
177
|
-
It extracts image-related metadata from uploaded media files, and generates one
|
178
|
-
or more thumbnail images as related resources.
|
93
|
+
version: '0.4'
|
94
|
+
description: This is a basic image-processor plugin for the Thingfish digital asset
|
95
|
+
manager. It extracts image-related metadata from uploaded media files, and generates
|
96
|
+
one or more thumbnail images as related resources.
|
179
97
|
email:
|
180
98
|
- ged@FaerieMUD.org
|
181
99
|
executables: []
|
182
100
|
extensions: []
|
183
|
-
extra_rdoc_files:
|
184
|
-
- History.md
|
185
|
-
- LICENSE.txt
|
186
|
-
- Manifest.txt
|
187
|
-
- README.md
|
101
|
+
extra_rdoc_files: []
|
188
102
|
files:
|
189
103
|
- ".document"
|
190
104
|
- ".editorconfig"
|
191
105
|
- ".rdoc_options"
|
192
106
|
- ".simplecov"
|
193
|
-
- ChangeLog
|
194
107
|
- History.md
|
195
108
|
- LICENSE.txt
|
196
109
|
- Manifest.txt
|
@@ -200,30 +113,31 @@ files:
|
|
200
113
|
- spec/data/skunks.jpg
|
201
114
|
- spec/spec_helper.rb
|
202
115
|
- spec/thingfish/processor/image_spec.rb
|
203
|
-
homepage:
|
116
|
+
homepage: http://deveiate.org/projects/Thingfish-Processor-Image
|
204
117
|
licenses:
|
205
118
|
- BSD-3-Clause
|
206
|
-
metadata:
|
207
|
-
|
208
|
-
|
209
|
-
-
|
210
|
-
|
119
|
+
metadata:
|
120
|
+
homepage_uri: http://deveiate.org/projects/Thingfish-Processor-Image
|
121
|
+
documentation_uri: http://deveiate.org/code/thingfish-processor-image
|
122
|
+
changelog_uri: http://deveiate.org/code/thingfish-processor-image/History_md.html
|
123
|
+
source_uri: http://bitbucket.org/ged/Thingfish-Processor-Image
|
124
|
+
post_install_message:
|
125
|
+
rdoc_options: []
|
211
126
|
require_paths:
|
212
127
|
- lib
|
213
128
|
required_ruby_version: !ruby/object:Gem::Requirement
|
214
129
|
requirements:
|
215
130
|
- - ">="
|
216
131
|
- !ruby/object:Gem::Version
|
217
|
-
version:
|
132
|
+
version: '0'
|
218
133
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
134
|
requirements:
|
220
135
|
- - ">="
|
221
136
|
- !ruby/object:Gem::Version
|
222
137
|
version: '0'
|
223
138
|
requirements: []
|
224
|
-
|
225
|
-
|
226
|
-
signing_key:
|
139
|
+
rubygems_version: 3.2.3
|
140
|
+
signing_key:
|
227
141
|
specification_version: 4
|
228
|
-
summary: This is a basic image-processor plugin for the Thingfish digital asset manager
|
142
|
+
summary: This is a basic image-processor plugin for the Thingfish digital asset manager.
|
229
143
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|
data/ChangeLog
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
2017-01-16 Mahlon E. Smith <mahlon@martini.nu>
|
2
|
-
|
3
|
-
* History.md, LICENSE.txt, README.md,
|
4
|
-
lib/thingfish/processor/image.rb:
|
5
|
-
Update for Configurability 3.x.
|
6
|
-
[36754e6ded9d] [tip]
|
7
|
-
|
8
|
-
2016-11-16 Michael Granger <ged@FaerieMUD.org>
|
9
|
-
|
10
|
-
* .hgtags:
|
11
|
-
Added tag v0.1.1 for changeset 55ddff2950ba
|
12
|
-
[b55753288dd8]
|
13
|
-
|
14
|
-
* .hgsigs:
|
15
|
-
Added signature for changeset c3964930bd4f
|
16
|
-
[55ddff2950ba] [v0.1.1]
|
17
|
-
|
18
|
-
* History.md, Rakefile, lib/thingfish/processor/image.rb, thingfish-
|
19
|
-
processor-image.gemspec:
|
20
|
-
Allow public release, update history, bump patch version.
|
21
|
-
[c3964930bd4f]
|
22
|
-
|
23
|
-
* .hgtags:
|
24
|
-
Added tag v0.1.0 for changeset a4094d45e915
|
25
|
-
[1a3ef2bccc1e]
|
26
|
-
|
27
|
-
* .hgsigs:
|
28
|
-
Added signature for changeset 19ca547fde2d
|
29
|
-
[a4094d45e915] [v0.1.0]
|
30
|
-
|
31
|
-
* History.md, thingfish-processor-image.gemspec:
|
32
|
-
Update history for initial release.
|
33
|
-
[19ca547fde2d]
|
34
|
-
|
35
|
-
2016-11-16 Mahlon E. Smith <mahlon@martini.nu>
|
36
|
-
|
37
|
-
* lib/thingfish/processor/image.rb,
|
38
|
-
spec/thingfish/processor/image_spec.rb:
|
39
|
-
Add ImageMagick parsing catch. Only load the first
|
40
|
-
frame/page/whatever into memory to generate a thumbnail.
|
41
|
-
[663fd528faed]
|
42
|
-
|
43
|
-
2016-11-14 Michael Granger <ged@FaerieMUD.org>
|
44
|
-
|
45
|
-
* Rakefile, thingfish-processor-image.gemspec:
|
46
|
-
Fix the version calculation in the gemspec task.
|
47
|
-
[84149cda4ae5]
|
48
|
-
|
49
|
-
* History.md, README.md, Rakefile, lib/thingfish/processor/image.rb,
|
50
|
-
thingfish-processor-image.gemspec:
|
51
|
-
Fix up the README, Rakefile.
|
52
|
-
[e04ece44aa56]
|
53
|
-
|
54
|
-
2016-11-13 Michael Granger <ged@FaerieMUD.org>
|
55
|
-
|
56
|
-
* thingfish-processor-image.gemspec:
|
57
|
-
Add the gemspec
|
58
|
-
[a43952fd8558]
|
59
|
-
|
60
|
-
* .hgignore, Manifest.txt, Rakefile:
|
61
|
-
Update manifest, specify minimum version of Mongrel2
|
62
|
-
[8f7523aa9de2]
|
63
|
-
|
64
|
-
* .document, .editorconfig, .gems, .hgignore, .pryrc, .rdoc_options,
|
65
|
-
.ruby-gemset, .ruby-version, .simplecov, Gemfile, History.md,
|
66
|
-
LICENSE.txt, Manifest.txt, README.md, Rakefile, certs/ged.pem,
|
67
|
-
lib/thingfish/processor/image.rb, spec/data/skunks.jpg,
|
68
|
-
spec/spec_helper.rb, spec/thingfish/processor/image_spec.rb:
|
69
|
-
Exported from Angelfish
|
70
|
-
[3995d4e06f28]
|