Skip to content

Instantly share code, notes, and snippets.

@defunkt
Created June 22, 2010 17:44
Show Gist options
  • Save defunkt/448806 to your computer and use it in GitHub Desktop.
Save defunkt/448806 to your computer and use it in GitHub Desktop.
Copy a string to the pasteboard in MacRuby
def pbcopy(string)
pasteBoard = NSPasteboard.generalPasteboard
pasteBoard.declareTypes([NSStringPboardType], owner: nil)
pasteBoard.setString(string, forType: NSStringPboardType)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment