lib/dribble.rb in dribble-0.1.1 vs lib/dribble.rb in dribble-0.1.2

- old
+ new

@@ -17,18 +17,22 @@ autoload :Request, 'dribble/request' autoload :NoMorePagesAvailable, 'dribble/exceptions' # Custom Objects for easy usage of the Dribble API autoload :Player, 'dribble/player' + autoload :Players, 'dribble/players' + autoload :Followers, 'dribble/players' + autoload :Draftees, 'dribble/players' + autoload :Shot, 'dribble/shot' + autoload :Shots, 'dribble/shots' autoload :Popular, 'dribble/shots' autoload :Debut, 'dribble/shots' - autoload :Everyone, 'dribble/shots' + autoload :Everyones, 'dribble/shots' autoload :Following, 'dribble/shots' - autoload :Followers, 'dribble/players' - autoload :Draftees, 'dribble/players' + # A slimmer API that converts JSON to a Hash. No Object creation overhead. module API autoload :Player, 'dribble/api/player' autoload :Shot, 'dribble/api/shot' \ No newline at end of file