mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Update crack dependency and release 0.6.1.
This commit is contained in:
parent
e216ca3f52
commit
b033f5618d
3 changed files with 16 additions and 9 deletions
4
History
4
History
|
@ -1,4 +1,6 @@
|
|||
== 0.7.0 (master)
|
||||
== 0.6.1
|
||||
* minor enhancements
|
||||
* updated to crack 0.1.8
|
||||
* bug fixes
|
||||
* subclasses always merge into the parent's default_options and
|
||||
default_cookies (l4rk).
|
||||
|
|
17
Rakefile
17
Rakefile
|
@ -1,15 +1,19 @@
|
|||
require 'rake'
|
||||
require File.expand_path('../lib/httparty', __FILE__)
|
||||
|
||||
begin
|
||||
require 'jeweler'
|
||||
Jeweler::Tasks.new do |gem|
|
||||
gem.name = "httparty"
|
||||
gem.summary = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
||||
gem.name = "httparty"
|
||||
gem.summary = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
||||
gem.description = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
||||
gem.email = "nunemaker@gmail.com"
|
||||
gem.homepage = "http://httparty.rubyforge.org"
|
||||
gem.authors = ["John Nunemaker", "Sandro Turriate"]
|
||||
gem.add_dependency 'crack', '0.1.7'
|
||||
gem.email = "nunemaker@gmail.com"
|
||||
gem.homepage = "http://httparty.rubyforge.org"
|
||||
gem.authors = ["John Nunemaker", "Sandro Turriate"]
|
||||
gem.version = HTTParty::VERSION
|
||||
|
||||
gem.add_dependency 'crack', HTTParty::CRACK_DEPENDENCY
|
||||
|
||||
gem.add_development_dependency "activesupport", "~>2.3"
|
||||
gem.add_development_dependency "cucumber", "~>0.7"
|
||||
gem.add_development_dependency "fakeweb", "~>1.2"
|
||||
|
@ -29,6 +33,7 @@ end
|
|||
|
||||
require 'spec/rake/spectask'
|
||||
Spec::Rake::SpecTask.new(:spec) do |spec|
|
||||
spec.ruby_opts << '-rubygems'
|
||||
spec.libs << 'lib' << 'spec'
|
||||
spec.spec_files = FileList['spec/**/*_spec.rb']
|
||||
spec.spec_opts = ['--options', 'spec/spec.opts']
|
||||
|
|
|
@ -12,8 +12,8 @@ require dir + 'httparty/cookie_hash'
|
|||
require dir + 'httparty/net_digest_auth'
|
||||
|
||||
module HTTParty
|
||||
VERSION = "0.6.0".freeze
|
||||
CRACK_DEPENDENCY = "0.1.7".freeze
|
||||
VERSION = "0.6.1".freeze
|
||||
CRACK_DEPENDENCY = "0.1.8".freeze
|
||||
|
||||
module AllowedFormatsDeprecation
|
||||
def const_missing(const)
|
||||
|
|
Loading…
Reference in a new issue