summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Sørensen <johan@johansorensen.com>2009-08-24 10:27:58 +0200
committerJohan Sørensen <johan@johansorensen.com>2009-08-24 10:27:58 +0200
commitf136dab63dc103da9a12f2fa506724487cedf78a (patch)
treefd3c0fb760cd8788dac253f7886e9c6294ae6362
parent10c8f8398726c4fa1e50b370664ea1f4025c6035 (diff)
downloadgitorious-mainline-outdated-f136dab63dc103da9a12f2fa506724487cedf78a.zip
gitorious-mainline-outdated-f136dab63dc103da9a12f2fa506724487cedf78a.tar.gz
gitorious-mainline-outdated-f136dab63dc103da9a12f2fa506724487cedf78a.tar.bz2
Added missing license headers to StatusTag and StatusTagTest
-rw-r--r--app/models/status_tag.rb18
-rw-r--r--test/unit/status_tag_test.rb18
2 files changed, 36 insertions, 0 deletions
diff --git a/app/models/status_tag.rb b/app/models/status_tag.rb
index 95295fb..8a30675 100644
--- a/app/models/status_tag.rb
+++ b/app/models/status_tag.rb
@@ -1,3 +1,21 @@
+# encoding: utf-8
+#--
+# Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
+#
+# This program 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, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program 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 <http://www.gnu.org/licenses/>.
+#++
+
class StatusTag
def initialize(name, project)
@name = name
diff --git a/test/unit/status_tag_test.rb b/test/unit/status_tag_test.rb
index 4240e31..d08a32b 100644
--- a/test/unit/status_tag_test.rb
+++ b/test/unit/status_tag_test.rb
@@ -1,3 +1,21 @@
+# encoding: utf-8
+#--
+# Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
+#
+# This program 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, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program 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 <http://www.gnu.org/licenses/>.
+#++
+
require File.dirname(__FILE__) + '/../test_helper'
class StatusTagTest < ActiveSupport::TestCase