trait RunnerSpec extends Spec with StdOpts with Interpolation

Source
RunnerSpec.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RunnerSpec
  2. Interpolation
  3. StdOpts
  4. Spec
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type OptionMagic <: Implicit
    Definition Classes
    Spec

Abstract Value Members

  1. abstract def help(str: => String): Unit
    Attributes
    protected
    Definition Classes
    Spec
  2. implicit abstract def optionMagicAdditions(s: String): OptionMagic
    Attributes
    protected
    Definition Classes
    Spec

Concrete Value Members

  1. object interpolate
    Definition Classes
    Interpolation
  2. object Bash extends Opt

    I think we're as close as we can get to bundling completion with the program given the constraints imposed by bash.

    I think we're as close as we can get to bundling completion with the program given the constraints imposed by bash. This outputs the completion function to a tempfile and echoes ". /path/to/file" to the console. Place it inside backticks like partest --bash and voila, you have absorbed command completion.

    Definition Classes
    StdOpts
  3. object SelfUpdate extends Opt

    Generates a very basic runner script.

    Generates a very basic runner script. It's called SelfUpdate because once it exists you can do something like

    tools/scmp --self-update tools/scmp

    and it will overwrite itself with the current version.

    Definition Classes
    StdOpts
  4. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def ##: Int
    Definition Classes
    AnyRef → Any
  6. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from RunnerSpec toany2stringadd[RunnerSpec] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  7. def ->[B](y: B): (RunnerSpec, B)
    Implicit
    This member is added by an implicit conversion from RunnerSpec toArrowAssoc[RunnerSpec] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. def ensuring(cond: (RunnerSpec) => Boolean, msg: => Any): RunnerSpec
    Implicit
    This member is added by an implicit conversion from RunnerSpec toEnsuring[RunnerSpec] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (RunnerSpec) => Boolean): RunnerSpec
    Implicit
    This member is added by an implicit conversion from RunnerSpec toEnsuring[RunnerSpec] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: => Any): RunnerSpec
    Implicit
    This member is added by an implicit conversion from RunnerSpec toEnsuring[RunnerSpec] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): RunnerSpec
    Implicit
    This member is added by an implicit conversion from RunnerSpec toEnsuring[RunnerSpec] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def heading(str: => String): Unit
    Attributes
    protected
    Definition Classes
    Spec
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. val optBranch: Boolean
  26. val optBuildPath: Option[String]
  27. val optClassPath: Option[String]
  28. val optCompilerPath: Option[String]
  29. val optDebug: Boolean
  30. val optDev: Boolean
  31. val optFailed: Boolean
  32. val optGrep: Option[String]
  33. val optHelp: Boolean
  34. val optInstrumented: Boolean
  35. val optJvm: Boolean
  36. val optNeg: Boolean
  37. val optNoExec: Boolean
  38. val optPack: Boolean
  39. val optPos: Boolean
  40. val optPresentation: Boolean
  41. val optRes: Boolean
  42. val optRun: Boolean
  43. val optScalap: Boolean
  44. val optShowDiff: Boolean
  45. val optShowLog: Boolean
  46. val optSourcePath: Option[String]
  47. val optSpecialized: Boolean
  48. val optTerse: Boolean
  49. val optTimeout: Option[String]
  50. val optUpdateCheck: Boolean
  51. val optVerbose: Boolean
  52. val optVersion: Boolean
  53. def programInfo: Info
    Definition Classes
    RunnerSpecSpec
  54. def referenceSpec: RunnerSpec
    Definition Classes
    RunnerSpecSpec
  55. val selfUpdateName: Option[String]
    Definition Classes
    StdOpts
  56. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  57. def toString(): String
    Definition Classes
    AnyRef → Any
  58. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  59. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  60. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from RunnerSpec toStringFormat[RunnerSpec] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (RunnerSpec, B)
    Implicit
    This member is added by an implicit conversion from RunnerSpec toArrowAssoc[RunnerSpec] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Interpolation

Inherited from StdOpts

Inherited from Spec

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromRunnerSpec to any2stringadd[RunnerSpec]

Inherited by implicit conversion StringFormat fromRunnerSpec to StringFormat[RunnerSpec]

Inherited by implicit conversion Ensuring fromRunnerSpec to Ensuring[RunnerSpec]

Inherited by implicit conversion ArrowAssoc fromRunnerSpec to ArrowAssoc[RunnerSpec]

Ungrouped