class Horza::Adapters::AbstractAdapter
Attributes
context[R]
Public Class Methods
expected_errors_map()
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 10 def expected_errors_map not_implemented_error end
Public Instance Methods
association(options = {})
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 47 def association(options = {}) not_implemented_error end
create!(options = {})
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 31 def create!(options = {}) not_implemented_error end
create_as_child!(parent, options = {})
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 35 def create_as_child!(parent, options = {}) not_implemented_error end
delete!(id)
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 39 def delete!(id) not_implemented_error end
find_all(options = {})
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 23 def find_all(options = {}) not_implemented_error end
find_first!(options = {})
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 19 def find_first!(options = {}) not_implemented_error end
get!(id)
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 15 def get!(id) not_implemented_error end
join(options = {})
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 27 def join(options = {}) not_implemented_error end
to_hash()
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 51 def to_hash not_implemented_error end
update!(id, options = {})
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 43 def update!(id, options = {}) not_implemented_error end
Private Instance Methods
collection?()
click to toggle source
# File lib/horza/adapters/abstract_adapter.rb, line 57 def collection? not_implemented_error end