-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdicomnet.gemspec
More file actions
29 lines (25 loc) · 1.26 KB
/
dicomnet.gemspec
File metadata and controls
29 lines (25 loc) · 1.26 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
# encoding: UTF-8
require File.expand_path('../lib/dicomnet/general/version', __FILE__)
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'dicomnet'
s.version = DICOMNET::VERSION
s.date = Time.now
s.summary = "Library for handling DICOM network communication."
s.require_paths = ['lib']
s.author = 'Christoffer Lervag'
s.email = 'chris.lervag@gmail.com'
s.homepage = 'https://github.com/dicom/dicomnet'
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 efficient and powerful handling of DICOM in Ruby, to the benefit of any student or professional who would like to use their favorite language to interact with a DICOM network service."
s.files = Dir["{lib}/**/*", "[A-Z]*"]
s.required_ruby_version = '>= 1.9.3'
s.add_development_dependency('bindata', '~> 1.8')
s.add_development_dependency('bundler', '~> 1.11')
s.add_development_dependency('dicom', '~> 0.9.6')
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.8', '>= 0.8.7')
end