mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
prepped for 0.4.4 release.
This commit is contained in:
parent
bc679294cc
commit
44f81ec186
3 changed files with 5 additions and 7 deletions
4
Manifest
4
Manifest
|
@ -30,7 +30,7 @@ lib/httparty.rb
|
|||
Manifest
|
||||
MIT-LICENSE
|
||||
Rakefile
|
||||
README
|
||||
README.rdoc
|
||||
setup.rb
|
||||
spec/fixtures/delicious.xml
|
||||
spec/fixtures/empty.xml
|
||||
|
@ -38,13 +38,11 @@ spec/fixtures/google.html
|
|||
spec/fixtures/twitter.json
|
||||
spec/fixtures/twitter.xml
|
||||
spec/fixtures/undefined_method_add_node_for_nil.xml
|
||||
spec/hash_spec.rb
|
||||
spec/httparty/cookie_hash_spec.rb
|
||||
spec/httparty/request_spec.rb
|
||||
spec/httparty/response_spec.rb
|
||||
spec/httparty_spec.rb
|
||||
spec/spec.opts
|
||||
spec/spec_helper.rb
|
||||
spec/string_spec.rb
|
||||
website/css/common.css
|
||||
website/index.html
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{httparty}
|
||||
s.version = "0.4.3"
|
||||
s.version = "0.4.4"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["John Nunemaker"]
|
||||
s.date = %q{2009-04-23}
|
||||
s.date = %q{2009-07-19}
|
||||
s.default_executable = %q{httparty}
|
||||
s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
||||
s.email = %q{nunemaker@gmail.com}
|
||||
|
@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|||
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 = ["--line-numbers", "--inline-source", "--title", "Httparty", "--main", "README"]
|
||||
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Httparty", "--main", "README.rdoc"]
|
||||
s.require_paths = ["lib"]
|
||||
s.rubyforge_project = %q{httparty}
|
||||
s.rubygems_version = %q{1.3.1}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module HTTParty #:nodoc:
|
||||
Version = '0.4.3'
|
||||
Version = '0.4.4'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue