p4ruby.gemspec #9

  • //
  • guest/
  • jen_bottom/
  • P4RubyGem/
  • p4ruby.gemspec
  • View
  • Commits
  • Open Download .zip Download (749 B)
Gem::Specification.new { |t| 
  t.name = "p4ruby"
  t.version = "2014.1"
  t.summary = "Ruby interface to the Perforce API"
  t.description = t.summary + "."
  t.author = "Perforce Software (ruby gem by Brett Bates and Jennifer Bottom)"
  t.email = "jbottom@perforce.com"
  t.homepage = "https://rubygems.org/gems/p4ruby"

  t.add_runtime_dependency 'rake', '~> 0'
  t.add_runtime_dependency 'test-unit', '>=0'

  t.files = %w[
    README
    CHANGES
    install.rb
    p4ruby.gemspec
  ]

  t.extra_rdoc_files = ["README"]
  rdoc_exclude = t.files - t.extra_rdoc_files
  t.rdoc_options +=
    ["--title", "P4Ruby: #{t.summary}", "--main", "README"] +
    rdoc_exclude.inject(Array.new) { |acc, pattern|
      acc + ["--exclude", pattern]
    }
}

# Change User Description Committed
#9 9465 Jen Bottom More cleanup.
Removed RakeFile and updated gemspec accordingly. Need to update the 'Changes' file before ready to push and review the README.
#8 9462 Jen Bottom Fixing up gem spec problem with test-unit and correcting gem homepage.
#7 9461 Jen Bottom Removed some crap that we don't need from the gemspec and cleaned up the source by removing the lib directory.
#6 9459 Jen Bottom Integrating Brett's changes into my branch.
#5 9436 Jen Bottom removed some dependencies from the gemspec.
P4RubyGem will still need these at run time, but at least not the gem installs on my Mac. Aiming to improve the gemspec
#4 9257 Jen Bottom deleting p4config file and adding to .ignore file.
#3 9254 Jen Bottom updated gemspec and cleaned out doc directory.
Will re-generate as part of the Gem build process
#2 8879 Jen Bottom integrating Brett Bates's latest work on P4Ruby gem for further enhancement.
#1 8366 Jen Bottom Adding the source code and docs for the P4Ruby Gem to the Public Depot.