class NRB::BreweryControlSystem::API::TemperatureProbeNamesEndpoint

Public Class Methods

endpoint() click to toggle source
# File lib/brewery_control_system/api/3.7.0/temperature_probe_names_endpoint.rb, line 5
def endpoint; 'sysname.dat'; end

Private Instance Methods

body_array() click to toggle source
Calls superclass method
# File lib/brewery_control_system/api/3.7.0/temperature_probe_names_endpoint.rb, line 12
def body_array
  super.map { |val| val.strip[/.+/m] }
end
parse() click to toggle source
# File lib/brewery_control_system/api/3.7.0/temperature_probe_names_endpoint.rb, line 17
def parse
  [ *body_array[63..66], *body_array[85..88] ].compact
end