examples/barebones/player.rb in dribble-0.0.31 vs examples/barebones/player.rb in dribble-0.1.0

- old
+ new

@@ -2,13 +2,25 @@ require File.join(dir, 'dribble') # puts "Find Player's Shots by name" # puts Dribble::API::Player.find('simplebits').inspect -puts -puts "Find Player's Profile" -player = Dribble::API::Player.profile('simplebits') -puts player +# puts +# puts "Find Player's Profile" +# player = Dribble::API::Player.profile('simplebits') +# puts player # puts # puts "Find all the shots a player is following" -# puts Dribble::API::Player.following_shots('simplebits').inspect +# puts Dribble::API::Player.following_shots('simplebits').inspect + + +puts +puts "Find Player's Followers" +player = Dribble::API::Player.followers('simplebits') +puts player.inspect + + +puts +puts "Find Player's Draftees" +player = Dribble::API::Player.draftees('simplebits') +puts player.inspect \ No newline at end of file