Module: Flakey::Github

Defined in:
lib/flakey/github.rb

Instance Method Summary collapse

Instance Method Details

#github_name(options = {}) ⇒ Object



3
4
5
# File 'lib/flakey/github.rb', line 3

def github_name(options = {})
  options[:name] || Flakey.configuration.github_name
end

#github_profile_url(options = {}) ⇒ Object



7
8
9
10
# File 'lib/flakey/github.rb', line 7

def github_profile_url(options = {})
  name = options[:name] || github_name
  "https://github.com/" + name
end