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

Fix activesupport deprecation warning

This commit is contained in:
Sandro Turriate 2010-06-08 17:15:55 -04:00
parent 41c94cdcac
commit ddbc2d70b4
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
require 'rubygems'
require 'activesupport'
require 'active_support'
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require File.join(dir, 'httparty')
@ -29,4 +29,4 @@ module AAWS
end
aaws = AAWS::Book.new(config[:access_key])
pp aaws.search(:query => {:title => 'Ruby On Rails'})
pp aaws.search(:query => {:title => 'Ruby On Rails'})

View file

@ -1,5 +1,5 @@
require 'mongrel'
require 'activesupport'
require 'active_support'
require 'lib/httparty'
require 'spec/expectations'