lib/tracker_api.rb in tracker_api-0.2.1 vs lib/tracker_api.rb in tracker_api-0.2.2

- old
+ new

@@ -21,18 +21,21 @@ module Endpoints autoload :Epic, 'tracker_api/endpoints/epic' autoload :Epics, 'tracker_api/endpoints/epics' autoload :Iterations, 'tracker_api/endpoints/iterations' + autoload :Me, 'tracker_api/endpoints/me' autoload :Project, 'tracker_api/endpoints/project' autoload :Projects, 'tracker_api/endpoints/projects' autoload :Stories, 'tracker_api/endpoints/stories' end module Resources autoload :Account, 'tracker_api/resources/account' autoload :Epic, 'tracker_api/resources/epic' autoload :Iteration, 'tracker_api/resources/iteration' + autoload :Me, 'tracker_api/resources/me' + autoload :MembershipSummary, 'tracker_api/resources/membership_summary' autoload :Label, 'tracker_api/resources/label' autoload :Project, 'tracker_api/resources/project' autoload :Story, 'tracker_api/resources/story' autoload :TimeZone, 'tracker_api/resources/time_zone' end