module DockerfileRB::CmdParser

Public Instance Methods

value() click to toggle source
# File lib/dockerfile-rb/cmd.rb, line 10
def value
  cmd = captures(:cmd_term)
  Cmd.new(cmd[0], cmd[1..-1])
end