docusign 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.3
1
+ 0.5.4
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.3"
8
+ s.version = "0.5.4"
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-23}
12
+ s.date = %q{2010-03-27}
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
@@ -1,7 +1,7 @@
1
1
  module Docusign
2
2
  class RequestRecipientTokenClientURLs
3
- # List all callback names, underscored, with the leading "on_"
3
+ # List all callback names, underscored, without the leading "on_"
4
4
  # eg. 'session_timeout', 'signing_complete', etc.
5
- CALLBACKS = instance_methods.select { |m| m =~ /^on/ }.reject { |m| m =~ /=/ }.map { |m| m.gsub(/on/, '').underscore }
5
+ CALLBACKS = instance_methods.select { |m| m =~ /^on/ }.reject { |m| m =~ /=/ }.map { |m| m.gsub(/^on/, '').underscore }
6
6
  end
7
7
  end
data/lib/docusign/tab.rb CHANGED
@@ -1,5 +1,9 @@
1
1
  module Docusign
2
2
  class Tab
3
+ alias_attribute :page, :page_number
4
+ alias_attribute :x, :x_position
5
+ alias_attribute :y, :y_position
6
+
3
7
  def anchor(options = {}, &block)
4
8
  returning anchor_builder.build(options, &block) do |a|
5
9
  yield a if block_given?
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 3
9
- version: 0.5.3
8
+ - 4
9
+ version: 0.5.4
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-23 00:00:00 -07:00
17
+ date: 2010-03-27 00:00:00 -07:00
18
18
  default_executable: docusign
19
19
  dependencies: []
20
20