commit ee99f31ca9f7cfb7548eec497726e0269ec04bb5 parent 98100e0207b99c7fa2555a3c5efe6ed9b817ab37 Author: lostd <lostd@2f30.org> Date: Fri, 14 Jun 2013 00:15:35 +0000 My first gem packaging Diffstat:
A | musicfix.gemspec | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/musicfix.gemspec b/musicfix.gemspec @@ -0,0 +1,18 @@ +Gem::Specification.new do |s| + s.name = 'musicfix' + s.version = '0.1.0' + s.date = '2013-06-13' + s.summary = 'Music file renamer and tagger using Discogs.com' + s.description = + 'Musicfix is a music file renamer and tagger with consistency concerns. ' + 'It has a release-centered logic and gets data from the Discogs.com site.' + s.authors = ['Lazaros Koromilas'] + s.email = 'lostd@2f30.org' + s.files = ['bin/musicfix', 'README'] + s.homepage = 'http://www.2f30.org/~lostd/musicfix' + s.license = 'BSD' + s.add_runtime_dependency 'discogs-wrapper' + s.add_runtime_dependency 'stringex' + s.add_runtime_dependency 'taglib-ruby' + s.executables = ['musicfix'] +end