File: imagetooth.gemspec

package info (click to toggle)
imagetooth 2.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 252 kB
  • sloc: ruby: 275; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download | duplicates (4)
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
require 'date'

Gem::Specification.new do |s|
  s.name              = %q{imagetooth}
  s.version           = "2.0.1"
  s.date              = Date.today.to_s
  s.summary           = %q{This library allows to generate images of teeth for odontograms with tooth faces painted in a color (red, green, blue, white or black for example). This is very usefull for dental applications..}
  s.description       =<<DESCRIPTION
This library allows to generate images of teeth for odontograms with tooth faces painted in a color (red, green, blue, white or black for example). This is very usefull for dental applications.
DESCRIPTION

  s.author                = %q{Gaston Ramos}
  s.email                 = %q{ramos.gaston@gmail.com}
  s.homepage              = %q{http://rubyforge.org/projects/imagetooth}
  s.bindir                = 'bin'
  s.executables           = ['imagetooth']
  s.default_executable = %q{imagetooth}
  s.require_paths         = %w{lib bin .}
  s.rubyforge_project     = %q{imagetooth}
  s.has_rdoc              = true
  s.required_ruby_version = '>= 1.9.2'
  s.add_dependency("rmagick", ">= 2.13.1")
  s.files = Dir.glob("**/*").delete_if { |item| item.include?("~") }

  s.signing_key = '/home/gramos/src/ruby/ruby-sign/gem-private_key.pem'
  s.cert_chain  = ['/home/gramos/src/ruby/ruby-sign/gem-public_cert.pem']

end