2011-03-03 22:36:12 +00:00
# -*- encoding: utf-8 -*-
$: . push File . expand_path ( " ../lib " , __FILE__ )
require " ruby-avm-library/version "
Gem :: Specification . new do | s |
s . name = " ruby-avm-library "
s . version = Ruby :: Avm :: Library :: VERSION
s . platform = Gem :: Platform :: RUBY
2011-03-18 19:59:23 +00:00
s . authors = [ " John Bintz " ]
s . email = [ " bintz@stsci.edu " ]
2011-03-03 22:36:12 +00:00
s . homepage = " "
2011-03-18 19:59:23 +00:00
s . summary = %q{ Library for reading and writing AVM XMP metadata }
s . description = %q{ This library makes working with Astronomy Visualization Metadata (AVM) tags within XMP easier. Reading existing XMP files and generating new ones is made simple through a fully object oriented interface. }
2011-03-03 22:36:12 +00:00
s . rubyforge_project = " ruby-avm-library "
s . files = ` git ls-files ` . split ( " \n " )
s . test_files = ` git ls-files -- {test,spec,features}/* ` . split ( " \n " )
s . executables = ` git ls-files -- bin/* ` . split ( " \n " ) . map { | f | File . basename ( f ) }
s . require_paths = [ " lib " ]
2011-03-07 17:39:47 +00:00
s . add_development_dependency 'rspec'
s . add_development_dependency 'mocha'
2011-03-09 15:14:31 +00:00
s . add_dependency 'nokogiri'
2011-03-18 16:28:53 +00:00
s . add_dependency 'thor'
2011-03-03 22:36:12 +00:00
end