module Rake::TeamCity::Utils::UrlFormatter
Public Instance Methods
location_from_link(path, line_str)
click to toggle source
@Nullable
# File lib/rspec/teamcity/utils/url_formatter.rb, line 22 def location_from_link(path, line_str) return nil if (path.nil? || line_str.nil?) "file://#{path}:#{line_str}" end
location_from_ruby_qualified_name(qualified_name)
click to toggle source
@Nullable
# File lib/rspec/teamcity/utils/url_formatter.rb, line 28 def location_from_ruby_qualified_name(qualified_name) return nil if (qualified_name.nil?) "ruby_qn://#{qualified_name}" end