mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Fixes problem with latest RubyGems - can't convert Pathname to String
This commit is contained in:
parent
00a7ec9ce5
commit
1f82664e65
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ require 'uri'
|
|||
require 'zlib'
|
||||
require 'crack'
|
||||
|
||||
dir = Pathname(__FILE__).dirname.expand_path
|
||||
dir = Pathname(__FILE__).dirname.expand_path.to_s
|
||||
|
||||
require dir + 'httparty/module_inheritable_attributes'
|
||||
require dir + 'httparty/cookie_hash'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue