Class: Tzispa::Commands::Server

Inherits:
Command
  • Object
show all
Defined in:
lib/tzispa/commands/server.rb

Constant Summary

Constants inherited from Command

Command::NO_PROJECT_FOLDER

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Server

Returns a new instance of Server.



9
10
11
12
13
14
# File 'lib/tzispa/commands/server.rb', line 9

def initialize(options)
  super(options)

  require 'tzispa/server'
  @server = Tzispa::Server.new
end

Instance Method Details

#startObject



16
17
18
# File 'lib/tzispa/commands/server.rb', line 16

def start
  server.start
end