texel-docusign 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/docusign.gemspec CHANGED
@@ -17,7 +17,7 @@
17
17
 
18
18
  Gem::Specification.new do |s|
19
19
  s.name = %q{docusign}
20
- s.version = "0.2.2"
20
+ s.version = "0.2.3"
21
21
 
22
22
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
23
23
  s.authors = ["Leigh Caplan"]
@@ -28,7 +28,7 @@ module Docusign
28
28
  end
29
29
 
30
30
  def on_simple_outbound
31
- if attributes[:user_name] && options[:password]
31
+ if attributes[:user_name] && attributes[:password]
32
32
  {"UsernameToken" => {"Username" => attributes[:user_name], "Password" => attributes[:password]}}
33
33
  end
34
34
  end
data/lib/docusign/base.rb CHANGED
@@ -23,7 +23,6 @@ module Docusign
23
23
  header = AuthHeaderHandler.new(
24
24
  :user_name => options.delete(:user_name),
25
25
  :password => options.delete(:password),
26
- :api_key => options.delete(:api_key)
27
26
  )
28
27
 
29
28
  connection.headerhandler << header
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: texel-docusign
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leigh Caplan