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

Switched to crack rubyforge gem from jnunemaker-crack github gem as rubyforge project was finally approved.

This commit is contained in:
John Nunemaker 2009-04-02 11:34:52 -04:00
parent d699465e6c
commit 67bb1b3296
3 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,7 @@
== 0.4.2 209-03-30
* 1 minor change
* 2 minor changes
* response code now returns an integer instead of a string (jqr)
* rubyforge project setup for crack so i'm now depending on that instead of jnunemaker-crack
== 0.4.1 2009-03-29
* 1 minor fix

View file

@ -14,7 +14,7 @@ Echoe.new(ProjectName, HTTParty::Version) do |p|
p.url = "http://#{ProjectName}.rubyforge.org"
p.author = "John Nunemaker"
p.email = "nunemaker@gmail.com"
p.extra_deps = [['jnunemaker-crack', '>= 0.1.0']]
p.extra_deps = [['crack', '>= 0.1.1']]
p.need_tar_gz = false
p.docs_host = WebsitePath
end

View file

@ -4,7 +4,7 @@ require 'net/http'
require 'net/https'
require 'httparty/module_inheritable_attributes'
require 'rubygems'
gem 'jnunemaker-crack'
gem 'crack'
require 'crack'
module HTTParty