From 585a0185af082bc3999375bfcd78677f4dc25059 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Thu, 15 Mar 2012 13:13:44 +0100 Subject: metadata reload fixed --- lib/task.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/task.rb') diff --git a/lib/task.rb b/lib/task.rb index 2f79cf1..7452012 100644 --- a/lib/task.rb +++ b/lib/task.rb @@ -97,12 +97,12 @@ module OpenTox code >= 400 and code != 503 end - def method_missing(method,*args) - method = method.to_s - response = self.[](RDF::OT[method]) - response = self.[](RDF::OT1[method]) if response.empty? # API 1.1 compatibility - internal_server_error "Unknown #{self.class} method #{method} for #{@uri}" if response.is_a? Array and response.empty? - return response.to_s + [:hasStatus, :resultURI].each do |method| + define_method method do + response = self.[](RDF::OT[method]) + response = self.[](RDF::OT1[method]) unless response # API 1.1 compatibility + response + end end #TODO: subtasks -- cgit v1.2.3