class Take::Compiler::Base
Public Class Methods
command()
click to toggle source
# File lib/take/compiler/base.rb, line 9 def self.command raise NotImplementedError end
new()
click to toggle source
# File lib/take/compiler/base.rb, line 13 def initialize @options = { extra: {} } end
on_platform?()
click to toggle source
# File lib/take/compiler/base.rb, line 5 def self.on_platform? false end
Public Instance Methods
command()
click to toggle source
# File lib/take/compiler/base.rb, line 17 def command self.class.command end