package cmd
- Source
- package.scala
- Alphabetic
- By Inheritance
- cmd
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
CommandLine extends CommandLineConfig
An instance of a command line, parsed according to a Spec.
- trait CommandLineConfig extends AnyRef
-
abstract
class
FromString[+T] extends PartialFunction[String, T]
A general mechanism for defining how a command line argument (always a String) is transformed into an arbitrary type.
A general mechanism for defining how a command line argument (always a String) is transformed into an arbitrary type. A few example instances are in the companion object, but in general either IntFromString will suffice or you'll want custom transformers.
-
trait
Instance extends Spec
The trait mixed into each instance of a specification.
The trait mixed into each instance of a specification.
- See also
Reference
-
trait
Interpolation extends AnyRef
Interpolation logic for generated files.
Interpolation logic for generated files. The idea is to be able to write in terms of @@THIS@@ and @@THAT@@ and the reference specification knows enough to perform the substitutions. Warrants expansion.
- trait Property extends Reference
-
class
PropertyMapper extends ((String, String)) ⇒ List[String]
Contains logic for translating a property key/value pair into equivalent command line arguments.
Contains logic for translating a property key/value pair into equivalent command line arguments. The default settings will translate, given programInfo.runner == "foo" :
foo.bar=true to --bar // if --bar is unary foo.bar=quux to --bar quux // if --bar is binary
-
trait
Reference extends Spec
Mixes in the specification trait and uses the vals therein to side-effect private accumulators.
Mixes in the specification trait and uses the vals therein to side-effect private accumulators. From this emerges formatted help, lists of unary and binary arguments, an apply which can creates instances of the specification, and etc.
- See also
Instance
-
trait
Spec extends AnyRef
This trait works together with others in scala.tools.cmd to allow declaratively specifying a command line program, with many attendant benefits.
This trait works together with others in scala.tools.cmd to allow declaratively specifying a command line program, with many attendant benefits. See scala.tools.cmd.DemoSpec for an example.
Value Members
- def fromArgs(args: List[String]): String
- def fromOpt(s: String): String
- implicit def implicitConversions: implicitConversions
- implicit def postfixOps: postfixOps
- def returning[T](x: T)(f: (T) ⇒ Unit): T
- def runAndExit(body: ⇒ Unit): Nothing
- def stripQuotes(s: String): String
- def toArgs(line: String): List[String]
- def toOpt(s: String): String
-
object
CommandLineParser
A simple enough command line parser.
- object FromString
- object Interpolation
-
object
Meta
Meta-options for command line tools.
Meta-options for command line tools. We could have all kinds of additional goodness here, but for now it's completion and script generation. See Demo for example usage.
-
object
Opt
Machinery for what amounts to a command line specification DSL.
Machinery for what amounts to a command line specification DSL. It is designed so the same specification trait can be used for two different purposes: generating a singleton specification object (trait Reference) and providing well typed vals for every configurable option in response to any given set of arguments (trait Instance).
- object Reference
- object Spec
The Scala compiler and reflection APIs.