class Quandl::Utility::Tasks::TaskConfig
Public Instance Methods
tag_prefix()
click to toggle source
# File lib/quandl/utility/tasks.rb, line 25 def tag_prefix read_attribute(:tag_prefix) end
version()
click to toggle source
# File lib/quandl/utility/tasks.rb, line 29 def version @version ||= File.exist?(version_path) ? File.read(version_path) : '0.0.0' end
version_with_prefix()
click to toggle source
# File lib/quandl/utility/tasks.rb, line 21 def version_with_prefix "#{tag_prefix}#{version}" end