class Mercure::Mercure

Public Instance Methods

build(plist) click to toggle source
# File lib/mercure.rb, line 21
def build(plist)
  if options[:pinailleur] or options[:p]
    buildDeploymentsByAsking plist
  else
    buildDeployments plist
  end
end
changelog(plist) click to toggle source
# File lib/mercure.rb, line 65
def changelog(plist)
  generateChangelogs plist
end
check() click to toggle source
# File lib/mercure.rb, line 13
def check
  puts "checking. Missing tools will be installed, if possible."
  
end
deploy(plist) click to toggle source
# File lib/mercure.rb, line 43
def deploy(plist)      
  if options[:pinailleur] or options[:p]
    deployDeploymentsByAsking plist
  else
    deployDeployments plist
  end
end
pan(plist) click to toggle source
# File lib/mercure.rb, line 54
def pan(plist)
  if options[:pinailleur] or options[:p]
    panDeploymentsByAsking plist
  else
    panDeployments plist
  end
end
upload(plist) click to toggle source
# File lib/mercure.rb, line 32
def upload(plist)
  if options[:pinailleur] or options[:p]
    uploadDeploymentsByAsking plist
  else
    uploadDeployments plist
  end
end