Skip to content

Commit

Permalink
Fixed a bug in the fedex:generate_definitions generator that caused t…
Browse files Browse the repository at this point in the history
…he initializer to try an load the definitions from an absolute path rather than one relative to Rails.root
  • Loading branch information
Brian Abreu committed Jun 29, 2012
1 parent 7c95095 commit 749986f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/fedex/version.rb
@@ -1,3 +1,3 @@
module Fedex module Fedex
VERSION = "1.1.48" VERSION = "1.1.49"
end end
2 changes: 1 addition & 1 deletion lib/generators/fedex/generate_definitions_generator.rb
Expand Up @@ -29,7 +29,7 @@ def install


unless (options[:skip_initializer]) unless (options[:skip_initializer])
create_file(FEDEX_INITIALIZER_FILE, create_file(FEDEX_INITIALIZER_FILE,
"Fedex::WebServices::Definitions.load_definitions('#{target_lib_dir}')") "Fedex::WebServices::Definitions.load_definitions('lib')")
end end
end end
end end
Expand Down

0 comments on commit 749986f

Please sign in to comment.