Method: Xcode.workspaces

Defined in:
lib/xcoder.rb

.workspacesArray<Workspaces>

Find all the workspaces within the current working directory.

Returns:

  • (Array<Workspaces>)

    an array of all the Workspaces found.



35
36
37
38
# File 'lib/xcoder.rb', line 35

def self.workspaces
  @@workspaces = parse_workspaces if @@workspaces.nil?
  @@workspaces
end