module Commands::CIC::Helpers

Public Instance Methods

cic_pwd() click to toggle source
# File lib/commands/cic/helpers.rb, line 16
def cic_pwd
  ENV['CIC_PWD']
end
courseware_environment() click to toggle source
# File lib/commands/cic/helpers.rb, line 4
def courseware_environment
  "CIC_COURSEWARE_VERSION=#{courseware_version} CIC_COURSEWARE_IMAGE=#{courseware_image} CIC_PWD=#{cic_pwd}"
end
courseware_image() click to toggle source
# File lib/commands/cic/helpers.rb, line 8
def courseware_image
  ENV['CIC_COURSEWARE_IMAGE']
end
courseware_version() click to toggle source
# File lib/commands/cic/helpers.rb, line 12
def courseware_version
  ENV['CIC_COURSEWARE_VERSION']
end