Sha256: 7c4d2d7f9946450079a7bda07d54c07dee9983e590fecb511964a001bc0a4dac
Contents?: true
Size: 267 Bytes
Versions: 8
Compression:
Stored size: 267 Bytes
Contents
module Pah class Commands class Base attr_reader :options def initialize(options = {}) @options = options end def run(argv) raise "#{self.class} subclasses should implement the #run method" end end end end
Version data entries
8 entries across 8 versions & 1 rubygems