mirror of https://github.com/einverne/dotfiles.git
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							564 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							564 B
						
					
					
				#!/usr/bin/env ruby | 
						|
# Usage: gitio URL [CODE] | 
						|
# | 
						|
# Turns a github.com URL | 
						|
#  into a git.io URL | 
						|
# | 
						|
# Created by @defunkt: | 
						|
#  https://gist.github.com/1209316  | 
						|
# | 
						|
# Copies the git.io URL to your clipboard. | 
						|
 | 
						|
url  = ARGV[0] | 
						|
code = ARGV[1] | 
						|
 | 
						|
if url !~ /^(https?:\/\/)?(gist\.)?github.com/ | 
						|
  abort "* github.com URLs only" | 
						|
end | 
						|
 | 
						|
if url !~ /^http/ | 
						|
  url = "https://#{url}" | 
						|
end | 
						|
 | 
						|
if code | 
						|
  code = "-F code=#{code}" | 
						|
end | 
						|
 | 
						|
output = `curl -i https://git.io -F 'url=#{url}' #{code} 2> /dev/null` | 
						|
if output =~ /Location: (.+)\n?/ | 
						|
  puts $1 | 
						|
  `echo #$1 | pbcopy` | 
						|
else | 
						|
  puts output | 
						|
end
 | 
						|
 |