diff --git a/Manifest.txt b/Manifest.txt index d5b6358..cce46bc 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -9,6 +9,8 @@ config/requirements.rb examples/aaws.rb examples/delicious.rb examples/twitter.rb +examples/whoismyrep.rb +httparty.gemspec lib/httparty.rb lib/httparty/core_ext.rb lib/httparty/core_ext/hash.rb diff --git a/config/hoe.rb b/config/hoe.rb index dd98efa..0edb542 100644 --- a/config/hoe.rb +++ b/config/hoe.rb @@ -2,7 +2,7 @@ require 'httparty/version' AUTHOR = 'John Nunemaker' # can also be an array of Authors EMAIL = "nunemaker@gmail.com" -DESCRIPTION = "Makes http fun again!" +DESCRIPTION = "Makes http fun! Also, makes consuming restful web services dead easy." GEM_NAME = 'httparty' # what ppl will type to install your gem RUBYFORGE_PROJECT = 'httparty' # The unix name for your project HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org" diff --git a/httparty.gemspec b/httparty.gemspec index da39bc9..dcf3465 100644 --- a/httparty.gemspec +++ b/httparty.gemspec @@ -5,10 +5,10 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["John Nunemaker"] s.date = %q{2008-07-28} - s.description = %q{Makes http fun again!} + s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.} s.email = ["nunemaker@gmail.com"] s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt"] - s.files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "examples/aaws.rb", "examples/delicious.rb", "examples/twitter.rb", "lib/httparty.rb", "lib/httparty/core_ext.rb", "lib/httparty/core_ext/hash.rb", "lib/httparty/version.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "spec/hash_spec.rb", "spec/httparty_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake"] + s.files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "examples/aaws.rb", "examples/delicious.rb", "examples/twitter.rb", "examples/whoismyrep.rb", "httparty.gemspec", "lib/httparty.rb", "lib/httparty/core_ext.rb", "lib/httparty/core_ext/hash.rb", "lib/httparty/version.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "spec/hash_spec.rb", "spec/httparty_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake"] s.has_rdoc = true s.homepage = %q{http://httparty.rubyforge.org} s.post_install_message = %q{When you HTTParty, you must party hard!} @@ -16,7 +16,7 @@ Gem::Specification.new do |s| s.require_paths = ["lib"] s.rubyforge_project = %q{httparty} s.rubygems_version = %q{1.2.0} - s.summary = %q{Makes http fun again!} + s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.} if s.respond_to? :specification_version then current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION @@ -30,4 +30,4 @@ Gem::Specification.new do |s| else s.add_dependency(%q, [">= 2.1"]) end -end \ No newline at end of file +end