1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00

Updated history, version and gemspec.

This commit is contained in:
John Nunemaker 2008-07-31 00:24:29 -04:00
parent 9b423a22c9
commit 72f09186e8
3 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,8 @@
== 0.1.1 2008-07-30
* 1 major enhancement:
* 2 major enhancement:
* Added :basic_auth key for options when making a request
* :query and :body both now work with query string or hash
== 0.1.0 2008-07-27

View file

@ -1,10 +1,10 @@
Gem::Specification.new do |s|
s.name = %q{httparty}
s.version = "0.1.0"
s.version = "0.1.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["John Nunemaker"]
s.date = %q{2008-07-29}
s.date = %q{2008-07-31}
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"]
@ -30,4 +30,4 @@ Gem::Specification.new do |s|
else
s.add_dependency(%q<activesupport>, [">= 2.1"])
end
end
end

View file

@ -2,7 +2,7 @@ module HTTParty
module VERSION #:nodoc:
MAJOR = 0
MINOR = 1
TINY = 0
TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end