summaryrefslogtreecommitdiff
path: root/lib/utils/shims/task.rb
blob: cb73e72eb60d30e299a6f512cd5e4d436fef5033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
=begin
* Name: task.rb
* Description: Task shims
* Author: Andreas Maunz <andreas@maunz.de>
* Date: 10/2012
=end


module OpenTox

  # Shims for the Task class
  class Task

    # Check status of a task
    # @return [String] Status
    def status
      self[RDF::OT.hasStatus]
    end

  end

end