File: extras.rb

package info (click to toggle)
ruby-train 3.12.6-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,204 kB
  • sloc: ruby: 9,876; sh: 17; makefile: 8
file content (10 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#
# Author:: Dominik Richter (<dominik.richter@gmail.com>)

module Train::Extras
  require_relative "extras/command_wrapper"
  require_relative "extras/stat"

  CommandResult = Struct.new(:stdout, :stderr, :exit_status)
  LoginCommand = Struct.new(:command, :arguments)
end