Sha256: 794d08e775b0963f1658d50abb9826694cf6d853569c796876d2566b4655964b
Contents?: true
Size: 1.1 KB
Versions: 4
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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
git-utils-0.5.10 | lib/git-utils/open.rb |
git-utils-0.5.9 | lib/git-utils/open.rb |
git-utils-0.5.8 | lib/git-utils/open.rb |
git-utils-0.5.7 | lib/git-utils/open.rb |