20 lines
264 B
Ruby
20 lines
264 B
Ruby
require_relative '../shared/branchability'
|
|
require_relative '../shared/runnable'
|
|
|
|
module Feature
|
|
|
|
class Base
|
|
|
|
include Shared::Branchability
|
|
include Shared::Runnable
|
|
|
|
attr_reader :argv
|
|
|
|
def initialize (argv)
|
|
@argv = argv
|
|
end
|
|
|
|
end
|
|
|
|
end
|