Method: QB::Repo::Git#github?

Defined in:
lib/qb/repo/git.rb

#github?false

Always returns false, where QB::Repo::Git::GitHub#github? always returns true.

Use from_path to construct instances so you end up with the right class.

Returns:

  • (false)


259
260
261
262
# File 'lib/qb/repo/git.rb', line 259

def github?
  # origin && QB::Repo::Git::GitHub.url?( origin )
  false
end