aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/lib/action_web_service/support
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-04-05 05:39:45 +0000
committerLeon Breedt <bitserf@gmail.com>2005-04-05 05:39:45 +0000
commit361dcad8fd022065bc38fd557b0ec02d6e3f1a0b (patch)
treeb76915bd4db75022fae743977f4e39e6b4e43cc0 /actionwebservice/lib/action_web_service/support
parentd7a7d85dbdd2e13612affe48cca39aa48643944d (diff)
downloadrails-361dcad8fd022065bc38fd557b0ec02d6e3f1a0b.tar.gz
rails-361dcad8fd022065bc38fd557b0ec02d6e3f1a0b.tar.bz2
rails-361dcad8fd022065bc38fd557b0ec02d6e3f1a0b.zip
be explicit about the object to do #instance_eval in for delegated dispatching,
clean up iterations to use #zip (bitsweat), git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1090 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/lib/action_web_service/support')
-rw-r--r--actionwebservice/lib/action_web_service/support/signature_types.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/actionwebservice/lib/action_web_service/support/signature_types.rb b/actionwebservice/lib/action_web_service/support/signature_types.rb
index 5c57254bc3..a7ee2fc773 100644
--- a/actionwebservice/lib/action_web_service/support/signature_types.rb
+++ b/actionwebservice/lib/action_web_service/support/signature_types.rb
@@ -9,12 +9,9 @@ module ActionWebService # :nodoc:
def canonical_signature_entry(spec, i)
name = "param#{i}"
if spec.is_a?(Hash)
- name = spec.keys.first
- spec = spec.values.first
- type = spec
- else
- type = spec
+ name, spec = spec.keys.first, spec.values.first
end
+ type = spec
if spec.is_a?(Array)
ArrayType.new(canonical_signature_entry(spec[0], 0), name)
else
@@ -173,7 +170,7 @@ module ActionWebService # :nodoc:
yield name, type
end
elsif @type_class.respond_to?(:columns)
- i = 0
+ i = -1
@type_class.columns.each do |column|
yield column.name, canonical_signature_entry(column.klass, i += 1)
end