dicom 0.1 → 0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +13 -1
- data/DOCUMENTATION +16 -2
- data/README +6 -5
- data/lib/DLibrary.rb +105 -0
- data/lib/DObject.rb +132 -66
- data/lib/DRead.rb +129 -585
- data/lib/Dictionary.rb +2859 -0
- data/lib/dicom.rb +2 -0
- metadata +5 -3
data/lib/dicom.rb
CHANGED
metadata
CHANGED
@@ -3,15 +3,15 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: dicom
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "0.
|
7
|
-
date: 2008-
|
6
|
+
version: "0.2"
|
7
|
+
date: 2008-08-10 00:00:00 +02:00
|
8
8
|
summary: Library for reading DICOM files.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
11
|
email: chris.lervag@gmail.com
|
12
12
|
homepage: http://rubyforge.org/projects/dicom/
|
13
13
|
rubyforge_project: dicom
|
14
|
-
description:
|
14
|
+
description: DICOM is a standard widely used throughout the world to store and transfer medical image data. This project aims to make a library that is able to handle DICOM in the Ruby language, to the benefit of any student or professional who would like to use Ruby to process their DICOM files.
|
15
15
|
autorequire:
|
16
16
|
default_executable:
|
17
17
|
bindir: bin
|
@@ -30,6 +30,8 @@ authors:
|
|
30
30
|
- "Christoffer Lerv\xE5g"
|
31
31
|
files:
|
32
32
|
- lib/DObject.rb
|
33
|
+
- lib/DLibrary.rb
|
34
|
+
- lib/Dictionary.rb
|
33
35
|
- lib/DRead.rb
|
34
36
|
- lib/dicom.rb
|
35
37
|
- CHANGELOG
|