brainmap-ImageData 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ImageData.gemspec +3 -3
- data/Manifest +1 -0
- data/lib/image_data.rb +7 -0
- metadata +3 -1
data/ImageData.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{ImageData}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Kristopher J. Kosmatka"]
|
9
9
|
s.date = %q{2009-08-06}
|
10
10
|
s.description = %q{Extraction of MRI metadata and insertion into compatible sqlite3 databases.}
|
11
11
|
s.email = %q{kk4@medicine.wisc.edu}
|
12
|
-
s.extra_rdoc_files = ["lib/CLUs/import_study.rb", "lib/CLUs/import_visit.rb", "lib/mysql_tools.rb", "lib/raw_image_dataset.rb", "lib/raw_image_file.rb", "lib/series_description.rb", "lib/visit_raw_data_directory.rb", "LICENSE", "README.rdoc"]
|
13
|
-
s.files = ["lib/CLUs/import_study.rb", "lib/CLUs/import_visit.rb", "lib/mysql_tools.rb", "lib/raw_image_dataset.rb", "lib/raw_image_file.rb", "lib/series_description.rb", "lib/visit_raw_data_directory.rb", "LICENSE", "Manifest", "Rakefile", "README.rdoc", "test/raw_image_dataset_test.rb", "test/raw_image_file_test.rb", "test/visit_duplication_test.rb", "test/visit_test.rb", "ImageData.gemspec"]
|
12
|
+
s.extra_rdoc_files = ["lib/CLUs/import_study.rb", "lib/CLUs/import_visit.rb", "lib/image_data.rb", "lib/mysql_tools.rb", "lib/raw_image_dataset.rb", "lib/raw_image_file.rb", "lib/series_description.rb", "lib/visit_raw_data_directory.rb", "LICENSE", "README.rdoc"]
|
13
|
+
s.files = ["lib/CLUs/import_study.rb", "lib/CLUs/import_visit.rb", "lib/image_data.rb", "lib/mysql_tools.rb", "lib/raw_image_dataset.rb", "lib/raw_image_file.rb", "lib/series_description.rb", "lib/visit_raw_data_directory.rb", "LICENSE", "Manifest", "Rakefile", "README.rdoc", "test/raw_image_dataset_test.rb", "test/raw_image_file_test.rb", "test/visit_duplication_test.rb", "test/visit_test.rb", "ImageData.gemspec"]
|
14
14
|
s.has_rdoc = true
|
15
15
|
s.homepage = %q{http://github.com/brainmap/ImageData}
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "ImageData", "--main", "README.rdoc"]
|
data/Manifest
CHANGED
data/lib/image_data.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brainmap-ImageData
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kristopher J. Kosmatka
|
@@ -22,6 +22,7 @@ extensions: []
|
|
22
22
|
extra_rdoc_files:
|
23
23
|
- lib/CLUs/import_study.rb
|
24
24
|
- lib/CLUs/import_visit.rb
|
25
|
+
- lib/image_data.rb
|
25
26
|
- lib/mysql_tools.rb
|
26
27
|
- lib/raw_image_dataset.rb
|
27
28
|
- lib/raw_image_file.rb
|
@@ -32,6 +33,7 @@ extra_rdoc_files:
|
|
32
33
|
files:
|
33
34
|
- lib/CLUs/import_study.rb
|
34
35
|
- lib/CLUs/import_visit.rb
|
36
|
+
- lib/image_data.rb
|
35
37
|
- lib/mysql_tools.rb
|
36
38
|
- lib/raw_image_dataset.rb
|
37
39
|
- lib/raw_image_file.rb
|