texel-docusign 0.1.2 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -164,9 +164,7 @@ private
164
164
  def init_methods
165
165
  Methods.each do |definitions|
166
166
  opt = definitions.last
167
- opt.merge!({
168
- :attributeformdefault => true
169
- })
167
+ opt.merge! :attributeformdefault => true
170
168
  if opt[:request_style] == :document
171
169
  add_document_operation(*definitions)
172
170
  else
@@ -13,8 +13,8 @@
13
13
  # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
14
  # PARTICULAR PURPOSE.
15
15
 
16
+ require 'docusign.rb'
16
17
  require 'soap/mapping'
17
- require 'docusign'
18
18
 
19
19
  module Docusign
20
20
 
data/lib/docusign.rb CHANGED
@@ -12,18 +12,14 @@
12
12
  # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
13
  # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
14
  # PARTICULAR PURPOSE.
15
-
15
+
16
16
  $LOAD_PATH << File.expand_path(File.dirname(__FILE__))
17
-
17
+
18
18
  gem 'soap4r'
19
19
  require 'docusign/docusign'
20
20
  require 'docusign/docusignMappingRegistry'
21
21
  require 'docusign/docusignDriver'
22
22
  require 'docusign/base'
23
23
  require 'docusign/auth_header_handler'
24
-
25
- Docusign::VERSION = '0.1'
26
- # require File.expand_path(File.dirname(__FILE__) + '/docusign/docusign')
27
- # require File.expand_path(File.dirname(__FILE__) + '/docusign/docusignMappingRegistry')
28
- # require File.expand_path(File.dirname(__FILE__) + '/docusign/docusignDriver')
29
- # require File.expand_path(File.dirname(__FILE__) + '/docusign/base')
24
+
25
+ Docusign::VERSION = '0.2'
@@ -9,7 +9,7 @@ namespace :docusign do
9
9
  namespace :services do
10
10
  desc "Generate SOAP stubs for Salesforce API"
11
11
  task :generate => [:environment] do
12
- wsdl_path = File.expand_path(File.dirname(__FILE__) + "/../lib/DocuSign3.0API.wsdl")
12
+ wsdl_path = File.expand_path(File.dirname(__FILE__) + "/../lib/DocuSign3.0.10API.wsdl")
13
13
  wsdl2ruby('docusign', 'Docusign', "file://#{wsdl_path}")
14
14
  end
15
15
  end
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.1.2
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leigh Caplan
@@ -14,6 +14,7 @@ default_executable: docusign
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: hoe
17
+ type: :development
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
@@ -39,7 +40,7 @@ files:
39
40
  - Rakefile
40
41
  - bin/docusign
41
42
  - docusign.gemspec
42
- - lib/DocuSign3.0API.wsdl
43
+ - lib/DocuSign3.0.10API.wsdl
43
44
  - lib/docusign.rb
44
45
  - lib/docusign/auth_header_handler.rb
45
46
  - lib/docusign/base.rb