lib/tracker_api.rb in tracker_api-0.2.6 vs lib/tracker_api.rb in tracker_api-0.2.7
- old
+ new
@@ -18,29 +18,36 @@
module Errors
class UnexpectedData < StandardError; end
end
module Endpoints
+ autoload :Activity, 'tracker_api/endpoints/activity'
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 :Memberships, 'tracker_api/endpoints/memberships'
+ autoload :Notifications, 'tracker_api/endpoints/notifications'
autoload :Project, 'tracker_api/endpoints/project'
autoload :Projects, 'tracker_api/endpoints/projects'
autoload :Stories, 'tracker_api/endpoints/stories'
autoload :Story, 'tracker_api/endpoints/story'
autoload :Tasks, 'tracker_api/endpoints/tasks'
end
module Resources
+ autoload :Base, 'tracker_api/resources/base'
+ autoload :Activity, 'tracker_api/resources/activity'
autoload :Account, 'tracker_api/resources/account'
+ autoload :Change, 'tracker_api/resources/change'
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 :Notification, 'tracker_api/resources/notification'
autoload :Label, 'tracker_api/resources/label'
autoload :Person, 'tracker_api/resources/person'
+ autoload :PrimaryResource, 'tracker_api/resources/primary_resource'
autoload :Project, 'tracker_api/resources/project'
autoload :ProjectMembership, 'tracker_api/resources/project_membership'
autoload :Story, 'tracker_api/resources/story'
autoload :Task, 'tracker_api/resources/task'
autoload :TimeZone, 'tracker_api/resources/time_zone'