# Ensure we require the local version and not one we might have installed already require File.join([File.dirname(__FILE__),'lib','pgit','version.rb']) spec = Gem::Specification.new do |s| s.name = 'pgit' s.version = Pgit::VERSION s.author = 'Edderic Ugaddan' s.email = 'edderic@gmail.com' s.homepage = 'http://edderic.github.io' s.platform = Gem::Platform::RUBY s.summary = 'Optimize your Pivotal Tracker and Github workflow' s.files = `git ls-files`.split(" ") s.require_paths << 'lib' s.has_rdoc = true s.extra_rdoc_files = ['README.markdown'] s.rdoc_options << '--title' << 'pgit' << '--main' s.bindir = 'bin' s.executables << 'pgit' s.add_development_dependency('rake') s.add_runtime_dependency('gli','2.12.2') end