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:
parent
41c94cdcac
commit
ddbc2d70b4
2 changed files with 3 additions and 3 deletions
|
@ -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'})
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
require 'mongrel'
|
||||
require 'activesupport'
|
||||
require 'active_support'
|
||||
require 'lib/httparty'
|
||||
require 'spec/expectations'
|
||||
|
||||
|
|
Loading…
Reference in a new issue