Skip to content
This repository has been archived by the owner on Jul 20, 2021. It is now read-only.

Commit

Permalink
Merge pull request #4 from Vidyard/relative
Browse files Browse the repository at this point in the history
Set some relative references to static references
  • Loading branch information
Brian Jou committed Jul 23, 2012
2 parents c18bea6 + fffcd8e commit d637266
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
eloqua (1.1.0)
eloqua (1.1.2)
activemodel
activesupport (>= 3.0.6)
builder
Expand Down
2 changes: 1 addition & 1 deletion lib/eloqua/api.rb
Expand Up @@ -17,7 +17,7 @@ class Api
# The namespace for Eloqua Array objects
XML_NS_ARRAY = 'http://schemas.microsoft.com/2003/10/Serialization/Arrays'

# WSDLs are from 3-30-2011
# WSDLs are from 7-16-2012
WSDL = {
:service => File.dirname(__FILE__) + '/wsdl/service.wsdl',
:data => File.dirname(__FILE__) + '/wsdl/data.wsdl',
Expand Down
4 changes: 2 additions & 2 deletions lib/eloqua/builder/xml.rb
Expand Up @@ -8,7 +8,7 @@ module Builder
# the main builder class
class Xml < ::Builder::XmlMarkup

include Eloqua::Builder::Templates
include ::Eloqua::Builder::Templates

# XML Templates

Expand Down Expand Up @@ -115,7 +115,7 @@ def object_collection!(sym, *args, &block)

# Extend to allow default namespace
def method_missing(sym, *args, &block)
if(@namespace && !args.first.kind_of?(Symbol))
if(@namespace && !args.first.kind_of?(::Symbol))
args.unshift(sym.to_sym)
sym = @namespace
end
Expand Down
2 changes: 1 addition & 1 deletion lib/eloqua/version.rb
@@ -1,3 +1,3 @@
module Eloqua
VERSION = "1.1.1"
VERSION = "1.1.2"
end

0 comments on commit d637266

Please sign in to comment.