sobakasu-image_science 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +39 -0
- data/History.txt.orig +77 -0
- data/Manifest.txt +20 -0
- data/README.txt +73 -0
- data/Rakefile +13 -0
- data/bench.rb +63 -0
- data/bin/image_science +221 -0
- data/bin/image_science_thumb +31 -0
- data/ext/extconf.rb +87 -0
- data/ext/image_science_ext.c.in +803 -0
- data/lib/image_science.rb +157 -0
- data/spec/fixtures/pix.gif +0 -0
- data/spec/fixtures/pix.jpg +0 -0
- data/spec/fixtures/pix.png +0 -0
- data/spec/fixtures/pix2.gif +0 -0
- data/spec/fixtures/pix2.jpg +0 -0
- data/spec/fixtures/pix2.png +0 -0
- data/spec/image_science_spec.rb +531 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +10 -0
- metadata +97 -0
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sobakasu-image_science
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ryan Davis
|
8
|
+
- Andrew Williams
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2010-02-24 00:00:00 +10:30
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: hoe
|
18
|
+
type: :development
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 2.3.3
|
25
|
+
version:
|
26
|
+
description: |-
|
27
|
+
ImageScience is a clean and happy Ruby library that generates
|
28
|
+
thumbnails -- and kicks the living crap out of RMagick. Oh, and it
|
29
|
+
doesn't leak memory like a sieve. :)
|
30
|
+
|
31
|
+
For more information including build steps, see http://seattlerb.rubyforge.org/
|
32
|
+
email:
|
33
|
+
- ryand-ruby@zenspider.com
|
34
|
+
- sobakasu@gmail.com
|
35
|
+
executables:
|
36
|
+
- image_science
|
37
|
+
- image_science_thumb
|
38
|
+
extensions:
|
39
|
+
- ext/extconf.rb
|
40
|
+
extra_rdoc_files:
|
41
|
+
- Manifest.txt
|
42
|
+
- History.txt
|
43
|
+
- README.txt
|
44
|
+
- bin/image_science
|
45
|
+
files:
|
46
|
+
- Manifest.txt
|
47
|
+
- History.txt
|
48
|
+
- History.txt.orig
|
49
|
+
- Rakefile
|
50
|
+
- README.txt
|
51
|
+
- bench.rb
|
52
|
+
- ext/extconf.rb
|
53
|
+
- ext/image_science_ext.c.in
|
54
|
+
- bin/image_science
|
55
|
+
- bin/image_science_thumb
|
56
|
+
- lib/image_science.rb
|
57
|
+
- spec/spec_helper.rb
|
58
|
+
- spec/fixtures/pix2.png
|
59
|
+
- spec/fixtures/pix2.gif
|
60
|
+
- spec/fixtures/pix2.jpg
|
61
|
+
- spec/fixtures/pix.jpg
|
62
|
+
- spec/fixtures/pix.png
|
63
|
+
- spec/fixtures/pix.gif
|
64
|
+
- spec/spec.opts
|
65
|
+
- spec/image_science_spec.rb
|
66
|
+
has_rdoc: true
|
67
|
+
homepage: http://seattlerb.rubyforge.org/ImageScience.html
|
68
|
+
licenses: []
|
69
|
+
|
70
|
+
post_install_message:
|
71
|
+
rdoc_options:
|
72
|
+
- --main
|
73
|
+
- README.txt
|
74
|
+
require_paths:
|
75
|
+
- lib
|
76
|
+
- ext
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: "0"
|
82
|
+
version:
|
83
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: "0"
|
88
|
+
version:
|
89
|
+
requirements: []
|
90
|
+
|
91
|
+
rubyforge_project: sobakasu-image_science
|
92
|
+
rubygems_version: 1.3.5
|
93
|
+
signing_key:
|
94
|
+
specification_version: 3
|
95
|
+
summary: ImageScience is a clean and happy Ruby library that generates thumbnails -- and kicks the living crap out of RMagick
|
96
|
+
test_files: []
|
97
|
+
|