Module: Quandl::Command::Tasks

Defined in:
lib/quandl/command/tasks.rb,
lib/quandl/command/tasks/base.rb

Defined Under Namespace

Classes: Base, Delete, Download, Info, List, Login, Uninstall, Update, Upload

Class Method Summary collapse

Class Method Details

.each(&block) ⇒ Object



9
10
11
# File 'lib/quandl/command/tasks.rb', line 9

def self.each(&block)
  tasks.each{|t| block.call(t) }
end

.rootObject



5
6
7
# File 'lib/quandl/command/tasks.rb', line 5

def self.root
  @root ||= File.expand_path(File.join(File.dirname(__FILE__), '../../../'))
end

.tasksObject



13
14
15
# File 'lib/quandl/command/tasks.rb', line 13

def self.tasks
  @tasks ||= []
end