class Temjin::Command
Public Class Methods
new(invocation_path, context = {})
click to toggle source
Calls superclass method
# File lib/temjin/command.rb, line 3 def initialize(invocation_path, context = {}) @config = context[:config] if context.key?(:config) super(invocation_path, context) end
Public Instance Methods
config()
click to toggle source
# File lib/temjin/command.rb, line 8 def config @config ||= Config.new end