Sha256: 144996d05b824227d21f8695ebff386a1928a7ee8d2ffb302427ad4f80518223

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

# 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 = 'https://github.com/Edderic/pgit'
  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_development_dependency('rspec', '~> 3.1')
  s.add_runtime_dependency('gli','2.12.2')
  s.license = 'MIT'
  s.requirements << 'At least one project that uses Pivotal Tracker and Git'
  s.requirements << 'cURL, at least 7.35.0'
  s.required_ruby_version = '>= 1.9.3'
  s.post_install_message = <<-MESSAGE

  If you are a first time user, please run `pgit install` to save the example
  configuration file under ~/.pgit.rc.yml and edit the file accordingly.

  For more info:
    `pgit --help`

  For feature requests and bug reporting: https://github.com/Edderic/pgit

  Thanks for installing!

  MESSAGE
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pgit-0.0.3 pgit.gemspec