Bar
- color
- points
Child
- has one clip
- has many scores
- name
- current_points
Score
- belongs to child
- points
- date
Reward
- name
- cost
RewardClaim
- belongs to child
- name
- cost
Data Setup
Bar.create(name: "Outstanding", points: 4, color: "pink") Bar.create(name: "Role Model", points: 3, color: "purple") Bar.create(name: "Showing Pride", points: 2, color: "blue") Bar.create(name: "Ready to Listen", points: 1, color: "green", default: true) Bar.create(name: "Think About It", points: 0, color: "yellow") Bar.create(name: "Parent's Choice", points: -1, color: "orange") Bar.create(name: "Go To Bed Early", points: -2, color: "red")
Reward.create(name: "Go to movie", cost: 5) Reward.create(name: "Stay up late", cost: 3) Reward.create(name: "Candy time", cost: 1) Reward.create(name: "Skyzone", cost: 5) Reward.create(name: "$5 towards savings", cost: 5)
View setup
#bar row
#claim reward
#reward modal
#reward
layout setup <%= stylesheet_link_tag "http://fonts.googleapis.com/icon?family=Material+Icons" %> <%= stylesheet_link_tag "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css" %> <%= javascript_include_tag "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js" %>