Skip to content

Instantly share code, notes, and snippets.

@laginha87
Created April 10, 2019 16:22
Show Gist options
  • Save laginha87/6ec1688186ddd416ab82543fa2c7fb7f to your computer and use it in GitHub Desktop.
Save laginha87/6ec1688186ddd416ab82543fa2c7fb7f to your computer and use it in GitHub Desktop.
def copy(text)
IO.popen('pbcopy', 'w') {|f| f << text}
end
class Array
def to_c
copy map(&:to_s).join("\n")
end
end
class String
def to_c
copy self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment