-
Notifications
You must be signed in to change notification settings - Fork 1
/
axon.gemspec
31 lines (30 loc) · 983 Bytes
/
axon.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'rake'
Gem::Specification.new do |s|
s.files = FileList['Rakefile',
'*.rdoc',
'lib/axon.rb',
'lib/axon/*.rb',
'lib/axon/axon.jar',
'ext/axon/*{.c,.h}',
'ext/axon/extconf.rb',
'ext/java/axon/*.java',
'test/*.rb',
'.gemtest'
].to_a
s.name = 'axon'
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.description = <<EOF
Read, manipulate, and write images with an emphasis on speed and a low memory
profile.
EOF
s.summary = 'Read, write and resize images.'
s.version = '0.2.0'
s.authors = ['Timothy Elliott']
s.extensions << 'ext/axon/extconf.rb'
s.email = 'tle@holymonkey.com'
s.homepage = 'http://github.com/ender672/axon'
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG.rdoc', 'TODO.rdoc']
s.test_files = Dir.glob('test/*.rb')
end