examples/player.rb in dribble-0.0.2 vs examples/player.rb in dribble-0.0.3

- old
+ new

@@ -10,9 +10,24 @@ # puts "Find Player's Profile" # player2 = Dribble::Player.profile('simplebits') # OR Dribble::Player.find('simplebits') # puts player.inspect +# puts +# puts "Find the shots that a specific Player is following" +# player3 = Dribble::Player.following_shots('simplebits') +# puts player3.inspect + + + puts -puts "Find the shots that a specific Player is following" -player3 = Dribble::Player.following_shots('simplebits') -puts player3.inspect +puts "Get a Player's Profile" +player = Dribble::Player.find(1) +puts player.inspect +# puts +# puts "Take this player and see what shots they are following" +# following_shots = player.following +# puts following_shots.inspect +# puts +# puts "Take this player and see what shots they've put up" +# my_shots = player.shots +# puts my_shots.inspect \ No newline at end of file