texel-docusign 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,6 +1,3 @@
1
- === 1.0.0 / 2009-01-24
2
-
3
- * 1 major enhancement
4
-
5
- * Birthday!
1
+ === 0.1.2 / 2009-02-08
6
2
 
3
+ * Fully functional first release.
data/README.txt CHANGED
@@ -7,41 +7,33 @@ http://www.github.com/texel/docusign
7
7
 
8
8
  A library for communicating with the Docusign API via SOAP.
9
9
 
10
- == FEATURES/PROBLEMS:
11
-
12
10
  == SYNOPSIS:
13
11
 
14
- FIX (code sample of usage)
15
-
16
- == REQUIREMENTS:
12
+ connection = Docusign::Base.login(
13
+ :user_name => 'your_user_name',
14
+ :password => 'your_password',
15
+ :endpoint_url => 'http://demo.docusign.net/API/3.0'
16
+ )
17
17
 
18
- * FIX (list of requirements)
18
+ connection.requestStatus :envelopeID => '12345'
19
19
 
20
20
  == INSTALL:
21
21
 
22
- * FIX (sudo gem install, anything else)
22
+ sudo gem install texel-docusign
23
23
 
24
24
  == LICENSE:
25
25
 
26
- (The MIT License)
27
-
28
- Copyright (c) 2009 Leigh Caplan
26
+ Copyright (C) DocuSign, Inc. All rights reserved.
29
27
 
30
- Permission is hereby granted, free of charge, to any person obtaining
31
- a copy of this software and associated documentation files (the
32
- 'Software'), to deal in the Software without restriction, including
33
- without limitation the rights to use, copy, modify, merge, publish,
34
- distribute, sublicense, and/or sell copies of the Software, and to
35
- permit persons to whom the Software is furnished to do so, subject to
36
- the following conditions:
28
+ This source code is intended only as a supplement to DocuSign SDK
29
+ and/or on-line documentation.
37
30
 
38
- The above copyright notice and this permission notice shall be
39
- included in all copies or substantial portions of the Software.
31
+ This sample is designed to demonstrate DocuSign features and is not intended
32
+ for production use. Code and policy for a production application must be
33
+ developed to meet the specific data and security requirements of the
34
+ application.
40
35
 
41
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
42
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
43
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
44
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
45
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
46
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
47
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36
+ THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
37
+ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
38
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
39
+ PARTICULAR PURPOSE.
data/docusign.gemspec CHANGED
@@ -1,8 +1,23 @@
1
+ # Copyright (C) DocuSign, Inc. All rights reserved.
2
+ #
3
+ # This source code is intended only as a supplement to DocuSign SDK
4
+ # and/or on-line documentation.
5
+ #
6
+ # This sample is designed to demonstrate DocuSign features and is not intended
7
+ # for production use. Code and policy for a production application must be
8
+ # developed to meet the specific data and security requirements of the
9
+ # application.
10
+ #
11
+ # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12
+ # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
+ # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
1
16
  # -*- encoding: utf-8 -*-
2
17
 
3
18
  Gem::Specification.new do |s|
4
19
  s.name = %q{docusign}
5
- s.version = "0.1.1"
20
+ s.version = "0.1.2"
6
21
 
7
22
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
23
  s.authors = ["Leigh Caplan"]
@@ -1,3 +1,18 @@
1
+ # Copyright (C) DocuSign, Inc. All rights reserved.
2
+ #
3
+ # This source code is intended only as a supplement to DocuSign SDK
4
+ # and/or on-line documentation.
5
+ #
6
+ # This sample is designed to demonstrate DocuSign features and is not intended
7
+ # for production use. Code and policy for a production application must be
8
+ # developed to meet the specific data and security requirements of the
9
+ # application.
10
+ #
11
+ # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12
+ # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
+ # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
1
16
  require 'soap/header/simplehandler'
2
17
 
3
18
  module Docusign
data/lib/docusign/base.rb CHANGED
@@ -1,3 +1,18 @@
1
+ # Copyright (C) DocuSign, Inc. All rights reserved.
2
+ #
3
+ # This source code is intended only as a supplement to DocuSign SDK
4
+ # and/or on-line documentation.
5
+ #
6
+ # This sample is designed to demonstrate DocuSign features and is not intended
7
+ # for production use. Code and policy for a production application must be
8
+ # developed to meet the specific data and security requirements of the
9
+ # application.
10
+ #
11
+ # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12
+ # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
+ # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
1
16
  module Docusign
2
17
  class Base
3
18
 
@@ -1,3 +1,18 @@
1
+ # Copyright (C) DocuSign, Inc. All rights reserved.
2
+ #
3
+ # This source code is intended only as a supplement to DocuSign SDK
4
+ # and/or on-line documentation.
5
+ #
6
+ # This sample is designed to demonstrate DocuSign features and is not intended
7
+ # for production use. Code and policy for a production application must be
8
+ # developed to meet the specific data and security requirements of the
9
+ # application.
10
+ #
11
+ # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12
+ # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
+ # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
1
16
  require 'xsd/qname'
2
17
 
3
18
  module Docusign
@@ -1,11 +1,19 @@
1
- # require File.expand_path(File.dirname(__FILE__) + '/docusign.rb')
2
- # require File.expand_path(File.dirname(__FILE__) + '/docusignMappingRegistry.rb')
3
- # require 'docusign'
4
- # require 'lib/docusignMappingRegistry'
5
- require 'soap/rpc/driver'
6
-
7
- #require 'wss4r/rpc/wssdriver'
1
+ # Copyright (C) DocuSign, Inc. All rights reserved.
2
+ #
3
+ # This source code is intended only as a supplement to DocuSign SDK
4
+ # and/or on-line documentation.
5
+ #
6
+ # This sample is designed to demonstrate DocuSign features and is not intended
7
+ # for production use. Code and policy for a production application must be
8
+ # developed to meet the specific data and security requirements of the
9
+ # application.
10
+ #
11
+ # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12
+ # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
+ # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
8
15
 
16
+ require 'soap/rpc/driver'
9
17
 
10
18
  module Docusign
11
19
 
@@ -1,6 +1,20 @@
1
+ # Copyright (C) DocuSign, Inc. All rights reserved.
2
+ #
3
+ # This source code is intended only as a supplement to DocuSign SDK
4
+ # and/or on-line documentation.
5
+ #
6
+ # This sample is designed to demonstrate DocuSign features and is not intended
7
+ # for production use. Code and policy for a production application must be
8
+ # developed to meet the specific data and security requirements of the
9
+ # application.
10
+ #
11
+ # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12
+ # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
+ # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
1
16
  require 'soap/mapping'
2
17
  require 'docusign'
3
- # require File.expand_path(File.dirname(__FILE__) + '/docusign')
4
18
 
5
19
  module Docusign
6
20
 
data/lib/docusign.rb CHANGED
@@ -1,3 +1,18 @@
1
+ # Copyright (C) DocuSign, Inc. All rights reserved.
2
+ #
3
+ # This source code is intended only as a supplement to DocuSign SDK
4
+ # and/or on-line documentation.
5
+ #
6
+ # This sample is designed to demonstrate DocuSign features and is not intended
7
+ # for production use. Code and policy for a production application must be
8
+ # developed to meet the specific data and security requirements of the
9
+ # application.
10
+ #
11
+ # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12
+ # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
+ # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
1
16
  $LOAD_PATH << File.expand_path(File.dirname(__FILE__))
2
17
 
3
18
  gem 'soap4r'
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leigh Caplan