lib/pennyworth/kits/clipboard.rb in pennyworth-3.1.0 vs lib/pennyworth/kits/clipboard.rb in pennyworth-3.2.0
- old
+ new
@@ -1,14 +1,13 @@
module Pennyworth
module Kits
# Provides OSX clipboard utility methods.
class Clipboard
-
# Copies text to the OSX clipboard.
# ==== Parameters
# * +text+ - Required. The text to send to the clipboard.
def self.copy text
- IO.popen("pbcopy", 'w').print text
+ IO.popen("pbcopy", "w").print text
text
end
end
end
end