Skip to content

Instantly share code, notes, and snippets.

@michiels
Created December 28, 2011 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michiels/1528659 to your computer and use it in GitHub Desktop.
Save michiels/1528659 to your computer and use it in GitHub Desktop.
module GroundControl
class Builder
def new(project_name, config)
@workspace = File.expand_path(File.join("builds", project_name))
end
def build
FileUtils.mkdir_p(@workspace)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment