docusign 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -14,17 +14,11 @@
14
14
  # PARTICULAR PURPOSE.
15
15
 
16
16
  require 'rubygems'
17
- #require 'hoe'
18
17
  require './lib/docusign.rb'
19
18
 
20
19
  gem 'soap4r'
21
20
  require 'wsdl/soap/wsdl2ruby'
22
21
 
23
- # Hoe.new('docusign', Docusign::VERSION) do |p|
24
- # p.rubyforge_name = 'docusign' # if different than lowercase project name
25
- # p.developer('Leigh Caplan', 'texel1@gmail.com')
26
- # end
27
-
28
22
  begin
29
23
  require 'jeweler'
30
24
  Jeweler::Tasks.new do |gemspec|
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.0
1
+ 0.5.1
data/docusign.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{docusign}
8
- s.version = "0.5.0"
8
+ s.version = "0.5.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Leigh Caplan"]
12
- s.date = %q{2010-03-20}
12
+ s.date = %q{2010-03-21}
13
13
  s.default_executable = %q{docusign}
14
14
  s.description = %q{A library for working with the Docusign API and associated objects.
15
15
  Provides SOAP4R-generated proxy classes, and extends many useful classes
@@ -23,7 +23,6 @@ with familiar Ruby-like syntax.
23
23
  s.files = [
24
24
  ".gitignore",
25
25
  "History.txt",
26
- "Manifest.txt",
27
26
  "README.txt",
28
27
  "Rakefile",
29
28
  "VERSION",
@@ -37,5 +37,16 @@ Docusign.constants.each do |c|
37
37
  if constant.is_a? Class
38
38
  constant.send :include, AutoCamelize
39
39
  constant.extend AutoCamelize
40
+
41
+ # Map iD to id, to avoid confusion
42
+ constant.class_eval do
43
+ def id
44
+ if respond_to?(:iD)
45
+ iD
46
+ else
47
+ super
48
+ end
49
+ end
50
+ end
40
51
  end
41
52
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 0
9
- version: 0.5.0
8
+ - 1
9
+ version: 0.5.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Leigh Caplan
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-03-20 00:00:00 -07:00
17
+ date: 2010-03-21 00:00:00 -07:00
18
18
  default_executable: docusign
19
19
  dependencies: []
20
20
 
@@ -33,7 +33,6 @@ extra_rdoc_files:
33
33
  files:
34
34
  - .gitignore
35
35
  - History.txt
36
- - Manifest.txt
37
36
  - README.txt
38
37
  - Rakefile
39
38
  - VERSION
data/Manifest.txt DELETED
@@ -1,18 +0,0 @@
1
- History.txt
2
- Manifest.txt
3
- README.txt
4
- Rakefile
5
- bin/docusign
6
- docusign.gemspec
7
- lib/DocuSign3.0.10API.wsdl
8
- lib/docusign.rb
9
- lib/docusign/auth_header_handler.rb
10
- lib/docusign/base.rb
11
- lib/docusign/docusign.rb
12
- lib/docusign/docusignDriver.rb
13
- lib/docusign/docusignMappingRegistry.rb
14
- lib/docusign/credential.rb
15
- lib/docusign/credentialDriver.rb
16
- lib/docusign/credentialMappingRegistry.rb
17
- tasks/docusign_tasks.rake
18
- test/test_docusign.rb