# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "prag_events/version" Gem::Specification.new do |s| s.name = "prag_events" s.version = PragEvents::VERSION s.authors = ["Dave Copeland"] s.email = ["davetron5000@gmail.com"] s.homepage = "https://github.com/davetron5000/prag_events" s.summary = %q{Generate XML for your events to make Michael Swaine's life easy when he creates PragPub each month} s.description = %q{prag_events generates the XML format that Michael Swaine uses when creating the "events" section of the "PragPub" monthly magazine. You simply run this program with the right inputs and copy the given XML into an email to Michael.} s.rubyforge_project = "prag_events" 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"] s.add_development_dependency('rdoc') s.add_development_dependency('aruba') s.add_development_dependency('rake','~> 0.9.2') s.add_development_dependency('ronn') s.add_dependency('methadone', '~>1.0.0') s.add_dependency('gem-man') s.add_dependency('open4') s.post_install_message = " !!!!!!!!!!!!!!!!!!!!! You should consider using the web interface on pragprog.com instead of bothering Michael with XML. THINK OF THE CHILDREN!!! !!!!!!!!!!!!!!!!!!!!! " end