Hello everyone!
Version 0.9.2 of the ruby-dicom gem has now been released. Actually, some of you may have already noticed, as it was published a few days ago. I've been somewhat busy, so I didn't get the time to make the announcement yet.
This is a fairly minor improvement, with 3 new features:
* Both upper case and lower case can be used when using tag strings with ruby-dicom's methods.
* All logging (message output) in ruby-dicom is now handled by a proper Logger class (either the Standard library's Logger, or if running with a Rails application, Rails' logger is used).
* DObject#new has been offloaded with a few new class methods to handle DICOM object creation in the various circumstances we support. From now on, using DObject#new for anything else than creating a new (empty) DICOM object has been deprecated. The new methods are:
DObject#read (for reading a DICOM file - the most used case I guess)
DObject#parse (for reading/parsing a DICOM string)
DObject#get (retrieving a DICOM file through http - experimental feature)
Some resources:
Installation:
gem install dicom
Documentation:
README and source code:
Issues:
Please check it out and don't hesitate to give me any feedback!
Chris