Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Commit

Permalink
Merge branch 'keychain_thingy' of https://github.com/CocoaPods/CocoaP…
Browse files Browse the repository at this point in the history
…ods-app into keychain_thingy
  • Loading branch information
orta committed Apr 9, 2016
2 parents 4506319 + 9a518a5 commit c4d26e0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -835,10 +835,12 @@ class DownloadOnlyTasks < BundleDependencyTasks
# Make the installed file executable?
attr_accessor :is_executable

def define_tasks
define_download_task
download_task
install_task
# NOP
def unpack_command
end
def unpack_task
end
def build_task
end

def install_task
Expand Down
4 changes: 4 additions & 0 deletions app/CocoaPods/CPPodfileViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,21 +64,25 @@ class CPPodfileViewController: NSViewController, NSTabViewDelegate {
}

@IBAction func install(obj: AnyObject) {
userProject.saveDocument(self)
installAction.performAction(.Install(verbose: false))
showConsoleTab(self)
}

@IBAction func installVerbose(obj: AnyObject) {
userProject.saveDocument(self)
installAction.performAction(.Install(verbose: true))
showConsoleTab(self)
}

@IBAction func installUpdate(obj: AnyObject) {
userProject.saveDocument(self)
installAction.performAction(.Update(verbose: false))
showConsoleTab(self)
}

@IBAction func installUpdateVerbose(obj: AnyObject) {
userProject.saveDocument(self)
installAction.performAction(.Update(verbose: true))
showConsoleTab(self)
}
Expand Down

0 comments on commit c4d26e0

Please sign in to comment.