Class: TestDots::CIAdapters::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/test_dots/ci_adapters/base.rb

Direct Known Subclasses

CircleCI, Jenkins, TravisCI

Instance Method Summary collapse

Instance Method Details

#active?Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/test_dots/ci_adapters/base.rb', line 4

def active?
  true
end

#branchObject



8
9
10
# File 'lib/test_dots/ci_adapters/base.rb', line 8

def branch
  '(unknown)'
end

#buildObject



12
13
14
# File 'lib/test_dots/ci_adapters/base.rb', line 12

def build
  nil
end

#urlObject



16
17
18
# File 'lib/test_dots/ci_adapters/base.rb', line 16

def url
  nil
end