zoomifier/zoomifier.gemspec

24 lines
631 B
Ruby
Raw Normal View History

2008-11-21 05:40:59 +00:00
require 'rubygems'
spec = Gem::Specification.new do |s|
s.name = 'Zoomifier'
2008-11-21 21:18:19 +00:00
s.version = '1.2'
2008-11-21 05:40:59 +00:00
s.author = 'Donald Ball'
s.email = 'donald.ball@gmail.com'
s.platform = Gem::Platform::RUBY
s.summary = 'A library for zoomifying images'
2008-11-21 21:18:19 +00:00
s.files = ['init.rb', 'lib/zoomifier.rb', 'bin/zoomify']
2008-11-21 05:40:59 +00:00
s.require_path = 'lib'
s.autorequire = 'zoomifier'
s.bindir = 'bin'
s.executables = ['zoomify']
s.default_executable = 'zoomify'
s.has_rdoc = true
s.extra_rdoc_files = ['README.txt']
s.add_dependency('rmagick')
end
if $0 == __FILE__
Gem::manage_gems
Gem::Builder.new(spec).build
end