summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bugzilla/comment.rb')
-rw-r--r--lib/bugzilla/comment.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/bugzilla/comment.rb b/lib/bugzilla/comment.rb
deleted file mode 100644
index 2cd9236..0000000
--- a/lib/bugzilla/comment.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# ===GLSAMaker v2
-# Copyright (C) 2010 Alex Legler <a3li@gentoo.org>
-#
-# 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.
-#
-# For more information, see the LICENSE file.
-
-# Encapsulates a comment to a Bug
-module Bugzilla
- class Comment
- attr_reader :author, :text, :date
-
- def initialize(by, text, date)
- @author = by
- @text = text
- @date = Time.parse(date)
- end
- end
-end