diff --git a/lib/permissions.rb b/lib/permissions.rb
index 886a50d3b99..6166b6ef54b 100644
--- a/lib/permissions.rb
+++ b/lib/permissions.rb
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2012 - present Instructure, Inc.
+#
+# This file is part of Canvas.
+#
+# Canvas is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Affero General Public License as published by the Free
+# Software Foundation, version 3 of the License.
+#
+# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Affero General Public License along
+# with this program. If not, see .
+
module Permissions
# canvas-lms proper, plugins, etc. call Permissions.register to add
# permissions to the system. all registrations must happen during app init;
diff --git a/lib/progress_runner.rb b/lib/progress_runner.rb
index 1420e522b89..dc4dc1a1379 100644
--- a/lib/progress_runner.rb
+++ b/lib/progress_runner.rb
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2013 Instructure, Inc.
+# Copyright (C) 2013 - present Instructure, Inc.
#
# This file is part of Canvas.
#
diff --git a/lib/reporting/counts_report.rb b/lib/reporting/counts_report.rb
index 73ac46b2943..f6dd210a67b 100644
--- a/lib/reporting/counts_report.rb
+++ b/lib/reporting/counts_report.rb
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2011 Instructure, Inc.
+# Copyright (C) 2011 - present Instructure, Inc.
#
# This file is part of Canvas.
#
diff --git a/lib/request_cache.rb b/lib/request_cache.rb
index c2a7493850a..4ef4043a254 100644
--- a/lib/request_cache.rb
+++ b/lib/request_cache.rb
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2015 - present Instructure, Inc.
+#
+# This file is part of Canvas.
+#
+# Canvas is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Affero General Public License as published by the Free
+# Software Foundation, version 3 of the License.
+#
+# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Affero General Public License along
+# with this program. If not, see .
+
# try to use for values that are small and likely to be re-used often within the lifetime of a request
class RequestCache < TempCache
end
\ No newline at end of file
diff --git a/lib/request_error.rb b/lib/request_error.rb
index 7ce80b5a4b8..140330c2395 100644
--- a/lib/request_error.rb
+++ b/lib/request_error.rb
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2014 - present Instructure, Inc.
+#
+# This file is part of Canvas.
+#
+# Canvas is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Affero General Public License as published by the Free
+# Software Foundation, version 3 of the License.
+#
+# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Affero General Public License along
+# with this program. If not, see .
+
class RequestError < ::RuntimeError
attr_accessor :response_status
diff --git a/lib/rubric_context.rb b/lib/rubric_context.rb
index e7da522846f..5437904a230 100644
--- a/lib/rubric_context.rb
+++ b/lib/rubric_context.rb
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2013 - present Instructure, Inc.
+#
+# This file is part of Canvas.
+#
+# Canvas is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Affero General Public License as published by the Free
+# Software Foundation, version 3 of the License.
+#
+# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Affero General Public License along
+# with this program. If not, see .
+
module RubricContext
def self.included(klass)
if klass < ActiveRecord::Base