porkchopclub/porkchop

View on GitHub
app/serializers/betting_info_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
class BettingInfoSerializer < ActiveModel::Serializer
  attributes :spread

  def spread
    [object.favourite.name, object.spread].join(" ")
  end
end