Class: CodeLines::Adapter

Inherits:
Object
  • Object
show all
Defined in:
lib/codelines/adapter.rb

Direct Known Subclasses

GitHub

Instance Method Summary collapse

Instance Method Details

#authenticate(*args, &block) ⇒ Object

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/codelines/adapter.rb', line 14

def authenticate(*args, &block)
  raise NotImplementedError, 'authenticate has not been implemented'
end

#count(*args, &block) ⇒ Object

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/codelines/adapter.rb', line 18

def count(*args, &block)
  raise NotImplementedError, 'count has not been implemented'
end