httparty 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.4.1 2009-03-29
2
+ * 1 minor fix
3
+ * gem 'jnunemaker-crack' instead of gem 'crack'
4
+
1
5
  == 0.4.0 2009-03-29
2
6
  * 1 minor change
3
7
  * Switched xml and json parsing to crack (same code as before just moved to gem for easier reuse in other projects)
data/httparty.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{httparty}
5
- s.version = "0.4.0"
5
+ s.version = "0.4.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["John Nunemaker"]
data/lib/httparty.rb CHANGED
@@ -4,7 +4,7 @@ require 'net/http'
4
4
  require 'net/https'
5
5
  require 'httparty/module_inheritable_attributes'
6
6
  require 'rubygems'
7
- gem 'crack'
7
+ gem 'jnunemaker-crack'
8
8
  require 'crack'
9
9
 
10
10
  module HTTParty
@@ -1,3 +1,3 @@
1
1
  module HTTParty #:nodoc:
2
- Version = '0.4.0'
2
+ Version = '0.4.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: httparty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Nunemaker