Sha256: d88725fd19152b60931f564cd816991881a55c57e4158286f0d328be3e67e097
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
require 'git-utils/command' class Open < Command def parser OptionParser.new do |opts| opts.banner = "Usage: git open" opts.on_tail("-h", "--help", "this usage guide") do puts opts.to_s; exit 0 end end end # Returns the URL for the repository page. def page_url if service == 'stash' && protocol == 'ssh' pattern = /(.*)@([^:]*):?([^\/]*)\/([^\/]*)\/(.*)\.git/ replacement = 'https://\2/projects/\4/repos/\5/browse?at=' + current_branch elsif service == 'stash' && protocol == 'http' pattern = /(.*)@([^:\/]*)(:?[^\/]*)\/(.*)scm\/([^\/]*)\/(.*)\.git/ replacement = 'https://\2\3/\4projects/\5/repos/\6/browse?at=' + current_branch elsif protocol == 'ssh' pattern = /(.*)@(.*):(.*)\.git/ replacement = 'https://\2/\3/' elsif protocol == 'http' pattern = /https?\:\/\/(([^@]*)@)?(.*)\.git/ replacement = 'https://\3/' end origin_url.sub(pattern, replacement) end # Returns a command appropriate for executing at the command line def cmd "open #{page_url}" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
git-utils-0.5.6 | lib/git-utils/open.rb |
git-utils-0.5.5 | lib/git-utils/open.rb |