Skip to content

Commit

Permalink
Fix activesupport deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sandro committed Jun 12, 2010
1 parent 41c94cd commit ddbc2d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/aaws.rb
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
require 'rubygems' require 'rubygems'
require 'activesupport' require 'active_support'


dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')) dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require File.join(dir, 'httparty') require File.join(dir, 'httparty')
Expand Down Expand Up @@ -29,4 +29,4 @@ def search(options={})
end end


aaws = AAWS::Book.new(config[:access_key]) aaws = AAWS::Book.new(config[:access_key])
pp aaws.search(:query => {:title => 'Ruby On Rails'}) pp aaws.search(:query => {:title => 'Ruby On Rails'})
2 changes: 1 addition & 1 deletion features/steps/env.rb
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
require 'mongrel' require 'mongrel'
require 'activesupport' require 'active_support'
require 'lib/httparty' require 'lib/httparty'
require 'spec/expectations' require 'spec/expectations'


Expand Down

0 comments on commit ddbc2d7

Please sign in to comment.