class Pandora::Commands::Setup

Attributes

file[R]

File that specifies the setup to be created

Public Class Methods

new(file) click to toggle source

Initializes the command with the file whose setup must be created. @param [File] file that specifies the setup to be created. @return [Setup] initialized command.

# File lib/pandora/commands/setup.rb, line 11
def initialize(file)
  @file = file
end

Public Instance Methods

execute() click to toggle source

Executes the command

# File lib/pandora/commands/setup.rb, line 16
def execute
  self.create_projects
  self.setup_workspace
  self.link_dependencies
  self.embed_frameworks
end

Private Instance Methods

create_projects() click to toggle source
# File lib/pandora/commands/setup.rb, line 25
def create_projects
  # TODO
end
embed_frameworks() click to toggle source
# File lib/pandora/commands/setup.rb, line 37
def embed_frameworks
  # TODO
end
setup_workspace() click to toggle source
# File lib/pandora/commands/setup.rb, line 29
def setup_workspace
  # TODO
end