Class: LMK::Runner::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/lmk/runner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



6
7
8
9
10
11
# File 'lib/lmk/runner.rb', line 6

def initialize
  @sms_service = LMK::TwilioSender.new
  @gist_service = LMK::GistSender.new
  @console_service = Kernel
  @shell_service = LMK::ShellCommand
end

Instance Attribute Details

#console_serviceObject

Returns the value of attribute console_service.



4
5
6
# File 'lib/lmk/runner.rb', line 4

def console_service
  @console_service
end

#gist_serviceObject

Returns the value of attribute gist_service.



4
5
6
# File 'lib/lmk/runner.rb', line 4

def gist_service
  @gist_service
end

#shell_serviceObject

Returns the value of attribute shell_service.



4
5
6
# File 'lib/lmk/runner.rb', line 4

def shell_service
  @shell_service
end

#sms_serviceObject

Returns the value of attribute sms_service.



4
5
6
# File 'lib/lmk/runner.rb', line 4

def sms_service
  @sms_service
end