lib/harvesting.rb in harvesting-0.3.0 vs lib/harvesting.rb in harvesting-0.4.0
- old
+ new
@@ -7,19 +7,24 @@
require "harvesting/models/harvest_record_collection"
# harvest records
require "harvesting/models/client"
require "harvesting/models/user"
require "harvesting/models/project"
-require "harvesting/models/invoice"
require "harvesting/models/task"
-require "harvesting/models/task_assignment"
+require "harvesting/models/project_user_assignment"
+require "harvesting/models/project_task_assignment"
+require "harvesting/models/invoice"
+require "harvesting/models/line_item"
require "harvesting/models/time_entry"
# harvest record collections
require "harvesting/models/tasks"
require "harvesting/models/users"
require "harvesting/models/contact"
require "harvesting/models/time_entries"
require "harvesting/models/projects"
+require "harvesting/models/project_user_assignments"
+require "harvesting/models/project_task_assignments"
+require "harvesting/models/invoices"
# API client
require "harvesting/client"
module Harvesting
end