hornetseye-rmagick 0.3.1 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +26 -1
- data/Rakefile +2 -3
- data/lib/hornetseye-rmagick/image.rb +2 -0
- metadata +5 -5
data/README.md
CHANGED
@@ -1,3 +1,28 @@
|
|
1
1
|
hornetseye-rmagick
|
2
|
-
|
2
|
+
==================
|
3
|
+
|
4
|
+
**Author**: Jan Wedekind
|
5
|
+
**Copyright**: 2010
|
6
|
+
**License**: GPL
|
7
|
+
|
8
|
+
Synopsis
|
9
|
+
--------
|
10
|
+
|
3
11
|
This Ruby extension implements the necessary conversions to save and load images stored in {Hornetseye::MultiArray}.
|
12
|
+
|
13
|
+
Installation
|
14
|
+
------------
|
15
|
+
|
16
|
+
**hornetseye-rmagick** provides file-I/O using the *RMagick* Ruby extension. *RMagick* requires the ImageMagick development headers. If you are running Debian or (K)ubuntu, you can install them like this:
|
17
|
+
|
18
|
+
$ sudo aptitude install libmagickwand-dev
|
19
|
+
|
20
|
+
To install this Ruby extension, use the following command:
|
21
|
+
|
22
|
+
$ sudo gem install hornetseye-rmagick
|
23
|
+
|
24
|
+
Alternatively you can build and install the Ruby extension from source as follows:
|
25
|
+
|
26
|
+
$ rake
|
27
|
+
$ sudo rake install
|
28
|
+
|
data/Rakefile
CHANGED
@@ -6,7 +6,7 @@ require 'rake/packagetask'
|
|
6
6
|
require 'rbconfig'
|
7
7
|
|
8
8
|
PKG_NAME = 'hornetseye-rmagick'
|
9
|
-
PKG_VERSION = '0.
|
9
|
+
PKG_VERSION = '0.4.0'
|
10
10
|
RB_FILES = FileList[ 'lib/**/*.rb' ]
|
11
11
|
TC_FILES = FileList[ 'test/tc_*.rb' ]
|
12
12
|
TS_FILES = FileList[ 'test/ts_*.rb' ]
|
@@ -55,8 +55,7 @@ begin
|
|
55
55
|
# For development just run it with "yard server --reload".
|
56
56
|
require 'yard'
|
57
57
|
YARD::Rake::YardocTask.new :yard do |y|
|
58
|
-
y.
|
59
|
-
y.files << FileList[ 'lib/**/*.rb' ]
|
58
|
+
y.files << RB_FILES
|
60
59
|
end
|
61
60
|
rescue LoadError
|
62
61
|
STDERR.puts 'Please install \'yard\' if you want to generate documentation'
|
metadata
CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
8
|
-
-
|
9
|
-
version: 0.
|
7
|
+
- 4
|
8
|
+
- 0
|
9
|
+
version: 0.4.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jan Wedekind
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date:
|
17
|
+
date: 2011-01-25 00:00:00 +00:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -86,9 +86,9 @@ files:
|
|
86
86
|
- COPYING
|
87
87
|
- .document
|
88
88
|
- lib/hornetseye_rmagick.rb
|
89
|
-
- lib/hornetseye-rmagick/image.rb
|
90
89
|
- lib/hornetseye-rmagick/multiarray.rb
|
91
90
|
- lib/hornetseye-rmagick/node.rb
|
91
|
+
- lib/hornetseye-rmagick/image.rb
|
92
92
|
has_rdoc: yard
|
93
93
|
homepage: http://wedesoft.github.com/hornetseye-rmagick/
|
94
94
|
licenses: []
|