Skip to content

Commit

Permalink
Updated manifest, history and gemspec for 0.1.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunemaker committed Dec 5, 2008
1 parent d25f23c commit e72ec5a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 28 deletions.
3 changes: 2 additions & 1 deletion History
@@ -1,8 +1,9 @@
== 0.1.8 2008-11-30
* 2 major enhancements
* 3 major enhancements
* Moved base_uri normalization into request class and out of httparty module, fixing
the problem where base_uri was not always being normalized.
* Stupid simple support for HTTParty.get/post/put/delete. (jqr)
* Switched gem management to Echoe from newgem.

== 0.1.7 2008-11-30
* 1 major enhancement
Expand Down
23 changes: 7 additions & 16 deletions Manifest
@@ -1,32 +1,23 @@
History.txt
License.txt
Manifest.txt
PostInstall.txt
README.txt
Rakefile
config/hoe.rb
config/requirements.rb
examples/aaws.rb
examples/basic.rb
examples/delicious.rb
examples/google.rb
examples/rubyurl.rb
examples/twitter.rb
examples/whoismyrep.rb
History
httparty.gemspec
lib/httparty.rb
lib/httparty/request.rb
lib/httparty/version.rb
script/console
script/destroy
script/generate
script/txt2html
lib/httparty.rb
Manifest
MIT-LICENSE
Rakefile
README
setup.rb
spec/httparty/request_spec.rb
spec/httparty_spec.rb
spec/spec.opts
spec/spec_helper.rb
tasks/deployment.rake
tasks/environment.rake
tasks/website.rake
website/css/common.css
website/index.html
22 changes: 11 additions & 11 deletions httparty.gemspec
Expand Up @@ -2,19 +2,19 @@

Gem::Specification.new do |s|
s.name = %q{httparty}
s.version = "0.1.7"
s.version = "0.1.8"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["John Nunemaker"]
s.date = %q{2008-11-30}
s.date = %q{2008-12-05}
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/google.rb", "examples/rubyurl.rb", "examples/twitter.rb", "examples/whoismyrep.rb", "httparty.gemspec", "lib/httparty.rb", "lib/httparty/request.rb", "lib/httparty/version.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "spec/httparty/request_spec.rb", "spec/httparty_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "website/css/common.css", "website/index.html"]
s.email = %q{nunemaker@gmail.com}
s.extra_rdoc_files = ["lib/httparty/request.rb", "lib/httparty/version.rb", "lib/httparty.rb", "README"]
s.files = ["examples/aaws.rb", "examples/basic.rb", "examples/delicious.rb", "examples/google.rb", "examples/rubyurl.rb", "examples/twitter.rb", "examples/whoismyrep.rb", "History", "httparty.gemspec", "lib/httparty/request.rb", "lib/httparty/version.rb", "lib/httparty.rb", "Manifest", "MIT-LICENSE", "Rakefile", "README", "setup.rb", "spec/httparty/request_spec.rb", "spec/httparty_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "website/css/common.css", "website/index.html"]
s.has_rdoc = true
s.homepage = %q{http://httparty.rubyforge.org}
s.post_install_message = %q{When you HTTParty, you must party hard!}
s.rdoc_options = ["--main", "README.txt"]
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Httparty", "--main", "README"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{httparty}
s.rubygems_version = %q{1.3.1}
Expand All @@ -26,13 +26,13 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 2.1"])
s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
s.add_development_dependency(%q<echoe>, [">= 0"])
else
s.add_dependency(%q<activesupport>, [">= 2.1"])
s.add_dependency(%q<hoe>, [">= 1.8.0"])
s.add_dependency(%q<echoe>, [">= 0"])
end
else
s.add_dependency(%q<activesupport>, [">= 2.1"])
s.add_dependency(%q<hoe>, [">= 1.8.0"])
s.add_dependency(%q<echoe>, [">= 0"])
end
end
end

0 comments on commit e72ec5a

Please sign in to comment.