def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("Resource",
                            "The Developer Certificate resource", "text"),
         ArgumentDescriptor("Password",
                            "Password to unlock the certificate", "text")
     ]
Exemple #2
0
 def get_arg_descriptors(cls):
   return [
           ArgumentDescriptor("Value", "The actual Value", "text"),
           ArgumentDescriptor("ValueIsJson", "Value is Json", "bool", default_value_lambda=lambda:False),
           ArgumentDescriptor("PathToSet", "To Which key to set the value", "text"),
           ArgumentDescriptor("File", "The Json file", "text"),
           ArgumentDescriptor("Destination", "Where to save the Json file", "text")
           ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("ResourceFormat", "The Resource to use",
                            "text"),
         ArgumentDescriptor(
             "DestinationFormat",
             "Where to put the file(relative to the working dir or absolute)",
             "text"),
         ArgumentDescriptor("IteratorArray", "Iterator for the Resources",
                            "text"),
         ArgumentDescriptor("ProjectFile", "ProjectFilePath", "text")
     ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("ConfigPath",
                            "External Configuration Directory", "text"),
         ArgumentDescriptor("CustomVars",
                            "Custom Variables array",
                            "json",
                            is_optional=True),
         ArgumentDescriptor("ExcludedBundles",
                            "Excluded Bundles array",
                            "json",
                            is_optional=True)
     ]
Exemple #5
0
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("ImageResource",
                            "External Configuration Directory", "text"),
         ArgumentDescriptor("Destination",
                            "External Configuration Directory", "text"),
         ArgumentDescriptor("Format", "External Configuration Directory",
                            "text"),
         ArgumentDescriptor("Resolution",
                            "The required resolution",
                            "text",
                            default_value_lambda=lambda x: None)
     ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor(
             "working directory",
             "relative or absolute path where the command will be executed",
             "text"),
         ArgumentDescriptor("command",
                            "shell command that will be executed", "text"),
         ArgumentDescriptor("is sudo",
                            "Whether to execute with sudo privileges",
                            "boolean"),
         ArgumentDescriptor(
             "catch shell output",
             "Whether the result should be the shell output", "boolean")
     ]
Exemple #7
0
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("WorkingDirectory",
                            "Working directory",
                            "text",
                            is_optional=False)
     ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor(
             "FilePath",
             "The absolute file path of the file to be uploaded", "text"),
         ArgumentDescriptor("UploadName", "The name of the upload", "text"),
         ArgumentDescriptor("BucketName", "The name of the bucket", "text"),
         ArgumentDescriptor("User", "UserName", "text"),
         ArgumentDescriptor("ApiToken", "the api token", "text"),
         ArgumentDescriptor("CdnProvider", "Rackspace or Amazon", "text")
     ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("Expression", "Python Expression", "text"),
         ArgumentDescriptor("Bundle", "Operations Bundle",
                            "OperationsBundle"),
     ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor(
             "ConfigPath", "External Configuration Directory", "text")
     ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("SearchString",
                            "The Certificates match pattern", "text")
     ]
 def get_output_descriptor(self):
   return [
           ArgumentDescriptor("out", "Comma separated list of the paths of the replaced files", "text")
           ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("Resource",
                            "The provistioning profile resource", "text")
     ]
 def get_arg_descriptors(cls):
   return [
             ArgumentDescriptor("FileMatch", "Regex to match on wich files we need to apply the replacement", "text"),
             ArgumentDescriptor("StringMatch", "Regex for the string we like to replace", "text"),
             ArgumentDescriptor("ReplaceWith", "The replacement text", "text")
           ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor(
             "FilePath", "The absolute file path of the file to be deleted",
             "text", os.path.exists)
     ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("TextToPrint",
                            "The text to be printed in the console",
                            "text"),
     ]
Exemple #17
0
 def get_arg_descriptors(cls):
   return [
           ArgumentDescriptor("Resource", "The Resource to use", "text"),
           ArgumentDescriptor("Destination", "Where to put the file(relative to the working dir or absolute)", "text")
           ]
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("Bundle", "Operations Bundle",
                            "OperationsBundle"),
     ]
 def get_arg_descriptors(cls):
   return [
           ArgumentDescriptor("Variable", "", "text"),
           ArgumentDescriptor("NewValue", "", "text"),
           ]
Exemple #20
0
 def get_arg_descriptors(cls):
     return [
         ArgumentDescriptor("Array", "Comma separated array", "list"),
         ArgumentDescriptor("Bundle", "Operations Bundle",
                            "OperationsBundle"),
     ]