framallo/movies-with-neo4j

View on GitHub
app/helpers/application_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ApplicationHelper
  def relationship_to_human
    { ACTED_IN: 'acted' }
  end

  def humanize_relation(relationship)
    relationship_to_human[relationship] || ''
  end
end