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

Commit

Permalink
Fix versioning on savon
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Jou committed Jul 24, 2012
1 parent d637266 commit 1d359d9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -6,7 +6,7 @@ PATH
activesupport (>= 3.0.6)
builder
i18n (>= 0.5.0)
savon
savon (= 0.8.6)

GEM
remote: http://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions eloqua.gemspec
Expand Up @@ -4,14 +4,14 @@ require "eloqua/version"
Gem::Specification.new do |s|
s.name = 'eloqua'
s.version = Eloqua::VERSION
s.date = '2012-07-04'
s.date = '2012-07-23'
s.authors = ["Brian Jou", "Ryan Caught", "James Lal"]
s.email = 'brian@vidyard.com'
s.files = ["lib/eloqua.rb"]
s.summary = 'Eloqua API for Ruby'
s.description = 'An Eloqua API Wrapper for Ruby'

s.add_runtime_dependency 'savon'
s.add_runtime_dependency 'savon', '=0.8.6'
s.add_runtime_dependency 'builder'
s.add_runtime_dependency 'activemodel'
s.add_runtime_dependency 'activesupport', '>= 3.0.6'
Expand Down
2 changes: 1 addition & 1 deletion lib/eloqua/builder/xml.rb
Expand Up @@ -86,7 +86,7 @@ def initialize(options = {}, &block)
super
@namespace = nil
@namespace = options[:namespace].to_sym if options[:namespace]
yield self if block_given?
yield self if ::Kernel.block_given?
end

def self.create(options = {}, &block)
Expand Down
2 changes: 1 addition & 1 deletion lib/eloqua/version.rb
@@ -1,3 +1,3 @@
module Eloqua
VERSION = "1.1.2"
VERSION = "1.1.3"
end
1 change: 0 additions & 1 deletion spec/lib/eloqua/api/action_spec.rb
@@ -1,6 +1,5 @@
require 'spec_helper'
require 'eloqua/api/action'
require 'ruby-debug'

describe Eloqua::Api::Action do
subject { Eloqua::Api::Action }
Expand Down

0 comments on commit 1d359d9

Please sign in to comment.