Skip to content

Commit

Permalink
jewelerified.
Browse files Browse the repository at this point in the history
  • Loading branch information
technicalpickles committed May 12, 2009
1 parent 521304d commit 3404151
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -5,10 +5,10 @@ begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "ruby-pivotal-tracker"
gem.summary = %Q{TODO}
gem.email = "josh@technicalpickles.com"
gem.summary = %Q{Ruby wrapper for the Pivotal Tracker API}
gem.email = "justin.smestad@gmail.com"
gem.homepage = "http://github.com/technicalpickles/ruby-pivotal-tracker"
gem.authors = ["Josh Nichols"]
gem.authors = ["Justin Smestad"]
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end

Expand Down
48 changes: 48 additions & 0 deletions ruby-pivotal-tracker.gemspec
@@ -0,0 +1,48 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{ruby-pivotal-tracker}
s.version = "0.0.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Justin Smestad"]
s.date = %q{2009-05-12}
s.email = %q{justin.smestad@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README",
"README.rdoc"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/ruby-pivotal-tracker.rb",
"test/pivotal_tracker_test.rb",
"test/test_helper.rb"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/technicalpickles/ruby-pivotal-tracker}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{Ruby wrapper for the Pivotal Tracker API}
s.test_files = [
"test/pivotal_tracker_test.rb",
"test/test_helper.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end
5 changes: 2 additions & 3 deletions test/pivotal_tracker_test.rb
@@ -1,5 +1,4 @@
require 'pivotal_tracker'
require 'test/unit'
require 'test_helper'

class PivotalTrackerTest < Test::Unit::TestCase

Expand Down Expand Up @@ -54,4 +53,4 @@ def test_story_deletion
assert_equal (current_size - 1), @tracker.stories.size
end

end
end
2 changes: 1 addition & 1 deletion test/test_helper.rb
@@ -1,9 +1,9 @@
require 'rubygems'
require 'test/unit'
require 'shoulda'

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))

require 'ruby-pivotal-tracker'

class Test::Unit::TestCase
Expand Down

0 comments on commit 3404151

Please sign in to comment.