class Quandl::Sandbox::Repository

Public Instance Methods

dirname() click to toggle source
# File lib/quandl/sandbox/repository.rb, line 20
def dirname
  @dirname ||= git.to_s.parameterize
end
full_path() click to toggle source
# File lib/quandl/sandbox/repository.rb, line 16
def full_path
  @full_path ||= File.join( '/home/ubuntu', dirname )
end
git=(value) click to toggle source
# File lib/quandl/sandbox/repository.rb, line 7
def git=(value)
  @full_path = nil
  @git = URI.escape( value.to_s )
end
ref=(value) click to toggle source
# File lib/quandl/sandbox/repository.rb, line 12
def ref=(value)
  @ref = URI.escape( value.to_s )
end
script() click to toggle source
# File lib/quandl/sandbox/repository.rb, line 24
def script
  @script ||= Script.new(self)
end