-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathrtkit.gemspec
More file actions
30 lines (25 loc) · 1.25 KB
/
rtkit.gemspec
File metadata and controls
30 lines (25 loc) · 1.25 KB
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
# encoding: UTF-8
require File.expand_path('../lib/rtkit/general/version', __FILE__)
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'rtkit'
s.version = RTKIT::VERSION
s.date = Time.now
s.summary = "Library for handling radiotherapy DICOM modalities."
s.require_paths = ['lib']
s.author = 'Christoffer Lervag'
s.email = 'chris.lervag@gmail.com'
s.homepage = 'https://github.com/dicom/rtkit/'
s.license = 'GPL-3.0'
s.description = "DICOM is a standard widely used throughout the world to store and transfer medical image data. This library enables powerful ways of handling the radiotherapy DICOM modalities in Ruby, to the benefit of any student or professional who would like to go further with their radiotherapy data."
s.files = Dir["{lib}/**/*", "[A-Z]*"]
s.required_ruby_version = '>= 1.9.3'
s.add_dependency('dicom', '~> 0.9', '>= 0.9.6')
s.add_dependency('narray', '~> 0.6', '>= 0.6.1')
s.add_development_dependency('bundler', '~> 1.11')
s.add_development_dependency('mocha', '~> 1.1')
s.add_development_dependency('rake', '~> 10.5')
s.add_development_dependency('redcarpet', '~> 3.3')
s.add_development_dependency('rspec', '~> 3.4')
s.add_development_dependency('yard', '~> 0.9', '>= 0.9.12')
end