summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/controllers/application_controller.rb2
-rw-r--r--app/controllers/bug_controller.rb2
-rw-r--r--app/controllers/index_controller.rb2
-rw-r--r--app/controllers/tools_controller.rb2
-rw-r--r--app/helpers/application_helper.rb2
-rw-r--r--app/helpers/glsa_helper.rb2
-rw-r--r--app/helpers/index_helper.rb2
-rw-r--r--app/helpers/tools_helper.rb2
-rw-r--r--app/models/bug.rb2
-rw-r--r--app/models/comment.rb2
-rw-r--r--app/models/glsa.rb2
-rw-r--r--app/models/package.rb2
-rw-r--r--app/models/reference.rb2
-rw-r--r--app/models/revision.rb2
-rw-r--r--app/models/user.rb2
-rw-r--r--config/environments/test.rb2
-rw-r--r--config/initializers/backtrace_silencers.rb2
-rw-r--r--config/initializers/bundler_ext.rb2
-rw-r--r--config/initializers/glsamaker-global.rb2
-rw-r--r--config/initializers/mime_types.rb2
-rw-r--r--config/initializers/new_rails_defaults.rb2
-rw-r--r--db/migrate/20090410212600_add_revisions_user_id_constraint.rb2
-rw-r--r--lib/authentication.rb2
-rw-r--r--lib/bugzilla.rb2
-rw-r--r--lib/bugzilla/bug.rb2
-rw-r--r--lib/bugzilla/comment.rb2
-rw-r--r--lib/bugzilla/history.rb2
-rw-r--r--lib/glsamaker.rb2
-rw-r--r--lib/glsamaker/bugs.rb4
-rw-r--r--lib/glsamaker/diff.rb4
-rw-r--r--lib/glsamaker/helpers.rb2
-rw-r--r--lib/glsamaker/http.rb4
-rw-r--r--lib/glsamaker/portage.rb4
-rw-r--r--lib/tasks/utils.rb2
-rw-r--r--test/unit/user_test.rb2
35 files changed, 39 insertions, 39 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 871a016..3b8b8ab 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/controllers/bug_controller.rb b/app/controllers/bug_controller.rb
index a7d7af0..83672bb 100644
--- a/app/controllers/bug_controller.rb
+++ b/app/controllers/bug_controller.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/controllers/index_controller.rb b/app/controllers/index_controller.rb
index 19e8f4e..e5d9a2a 100644
--- a/app/controllers/index_controller.rb
+++ b/app/controllers/index_controller.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/controllers/tools_controller.rb b/app/controllers/tools_controller.rb
index 986f71d..bc26acc 100644
--- a/app/controllers/tools_controller.rb
+++ b/app/controllers/tools_controller.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 142952d..252abe2 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -91,4 +91,4 @@ module ApplicationHelper
'normal'
end
end
-end \ No newline at end of file
+end
diff --git a/app/helpers/glsa_helper.rb b/app/helpers/glsa_helper.rb
index b21eded..832e570 100644
--- a/app/helpers/glsa_helper.rb
+++ b/app/helpers/glsa_helper.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/helpers/index_helper.rb b/app/helpers/index_helper.rb
index 02274da..ea82a6a 100644
--- a/app/helpers/index_helper.rb
+++ b/app/helpers/index_helper.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/helpers/tools_helper.rb b/app/helpers/tools_helper.rb
index d2a0c97..5fa4f26 100644
--- a/app/helpers/tools_helper.rb
+++ b/app/helpers/tools_helper.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/models/bug.rb b/app/models/bug.rb
index de37f47..9c302bb 100644
--- a/app/models/bug.rb
+++ b/app/models/bug.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/models/comment.rb b/app/models/comment.rb
index 026e8b3..e583c53 100644
--- a/app/models/comment.rb
+++ b/app/models/comment.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/models/glsa.rb b/app/models/glsa.rb
index 764ef72..308a2c2 100644
--- a/app/models/glsa.rb
+++ b/app/models/glsa.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/models/package.rb b/app/models/package.rb
index 84b0508..0246079 100644
--- a/app/models/package.rb
+++ b/app/models/package.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/models/reference.rb b/app/models/reference.rb
index 8bcd982..f378cd4 100644
--- a/app/models/reference.rb
+++ b/app/models/reference.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/models/revision.rb b/app/models/revision.rb
index 241c2c2..7132707 100644
--- a/app/models/revision.rb
+++ b/app/models/revision.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/app/models/user.rb b/app/models/user.rb
index 6572026..cd6ce59 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/config/environments/test.rb b/config/environments/test.rb
index d6f80a4..3cae1a7 100644
--- a/config/environments/test.rb
+++ b/config/environments/test.rb
@@ -25,4 +25,4 @@ config.action_mailer.delivery_method = :test
# Use SQL instead of Active Record's schema dumper when creating the test database.
# This is necessary if your schema can't be completely dumped by the schema dumper,
# like if you have constraints or database-specific column types
-# config.active_record.schema_format = :sql \ No newline at end of file
+# config.active_record.schema_format = :sql
diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb
index c2169ed..370315d 100644
--- a/config/initializers/backtrace_silencers.rb
+++ b/config/initializers/backtrace_silencers.rb
@@ -4,4 +4,4 @@
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
# You can also remove all the silencers if you're trying do debug a problem that might steem from framework code.
-# Rails.backtrace_cleaner.remove_silencers! \ No newline at end of file
+# Rails.backtrace_cleaner.remove_silencers!
diff --git a/config/initializers/bundler_ext.rb b/config/initializers/bundler_ext.rb
index adec6e2..0f897ec 100644
--- a/config/initializers/bundler_ext.rb
+++ b/config/initializers/bundler_ext.rb
@@ -24,4 +24,4 @@ module ActionView
end
ActionView::TemplateHandlers::BuilderOptions.margin = 0
-ActionView::TemplateHandlers::BuilderOptions.indent = 2 \ No newline at end of file
+ActionView::TemplateHandlers::BuilderOptions.indent = 2
diff --git a/config/initializers/glsamaker-global.rb b/config/initializers/glsamaker-global.rb
index 3fd47d0..87b7e13 100644
--- a/config/initializers/glsamaker-global.rb
+++ b/config/initializers/glsamaker-global.rb
@@ -1,2 +1,2 @@
# window stuff needed first
-ActionView::Helpers::AssetTagHelper::register_javascript_include_default 'modalbox' \ No newline at end of file
+ActionView::Helpers::AssetTagHelper::register_javascript_include_default 'modalbox'
diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb
index ea961ff..225703f 100644
--- a/config/initializers/mime_types.rb
+++ b/config/initializers/mime_types.rb
@@ -1,4 +1,4 @@
# Add new mime types for use in respond_to blocks:
Mime::Type.register "text/plain", :txt
# TODO: Change to something that downloads
-# Mime::Type.register "text/plain", :xml \ No newline at end of file
+# Mime::Type.register "text/plain", :xml
diff --git a/config/initializers/new_rails_defaults.rb b/config/initializers/new_rails_defaults.rb
index 8ec3186..4f932c7 100644
--- a/config/initializers/new_rails_defaults.rb
+++ b/config/initializers/new_rails_defaults.rb
@@ -16,4 +16,4 @@ ActiveSupport.use_standard_json_time_format = true
# Don't escape HTML entities in JSON, leave that for the #json_escape helper.
# if you're including raw json in an HTML page.
-ActiveSupport.escape_html_entities_in_json = false \ No newline at end of file
+ActiveSupport.escape_html_entities_in_json = false
diff --git a/db/migrate/20090410212600_add_revisions_user_id_constraint.rb b/db/migrate/20090410212600_add_revisions_user_id_constraint.rb
index 50ea166..18597cb 100644
--- a/db/migrate/20090410212600_add_revisions_user_id_constraint.rb
+++ b/db/migrate/20090410212600_add_revisions_user_id_constraint.rb
@@ -6,4 +6,4 @@ class AddRevisionsUserIdConstraint < ActiveRecord::Migration
def self.down
execute "ALTER TABLE `revisions` DROP FOREIGN KEY revisions_user_userid"
end
-end \ No newline at end of file
+end
diff --git a/lib/authentication.rb b/lib/authentication.rb
index ad98c7f..5982201 100644
--- a/lib/authentication.rb
+++ b/lib/authentication.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/lib/bugzilla.rb b/lib/bugzilla.rb
index 49df77b..5c8adea 100644
--- a/lib/bugzilla.rb
+++ b/lib/bugzilla.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/lib/bugzilla/bug.rb b/lib/bugzilla/bug.rb
index 22be421..e49a245 100644
--- a/lib/bugzilla/bug.rb
+++ b/lib/bugzilla/bug.rb
@@ -136,4 +136,4 @@ module Bugzilla
node.children.first.content.strip
end
end
-end \ No newline at end of file
+end
diff --git a/lib/bugzilla/comment.rb b/lib/bugzilla/comment.rb
index 7a91530..2cd9236 100644
--- a/lib/bugzilla/comment.rb
+++ b/lib/bugzilla/comment.rb
@@ -19,4 +19,4 @@ module Bugzilla
@date = Time.parse(date)
end
end
-end \ No newline at end of file
+end
diff --git a/lib/bugzilla/history.rb b/lib/bugzilla/history.rb
index 6722b0b..fa00c01 100644
--- a/lib/bugzilla/history.rb
+++ b/lib/bugzilla/history.rb
@@ -101,4 +101,4 @@ module Bugzilla
"#{@user} changed at #{@time.to_s}: #{@changes.inspect}"
end
end
-end \ No newline at end of file
+end
diff --git a/lib/glsamaker.rb b/lib/glsamaker.rb
index 3e4ccaf..d55bc81 100644
--- a/lib/glsamaker.rb
+++ b/lib/glsamaker.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/lib/glsamaker/bugs.rb b/lib/glsamaker/bugs.rb
index 0363cd6..bed7085 100644
--- a/lib/glsamaker/bugs.rb
+++ b/lib/glsamaker/bugs.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
@@ -167,4 +167,4 @@ module Glsamaker
end
end
-end \ No newline at end of file
+end
diff --git a/lib/glsamaker/diff.rb b/lib/glsamaker/diff.rb
index 51f30cd..18e10f6 100644
--- a/lib/glsamaker/diff.rb
+++ b/lib/glsamaker/diff.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
# Copyright (C) 2006-2007 Jean-Philippe Lang
#
@@ -50,4 +50,4 @@ module Glsamaker
end
end
-end \ No newline at end of file
+end
diff --git a/lib/glsamaker/helpers.rb b/lib/glsamaker/helpers.rb
index c5c9a8f..aca09ab 100644
--- a/lib/glsamaker/helpers.rb
+++ b/lib/glsamaker/helpers.rb
@@ -18,4 +18,4 @@ module Glsamaker
include Singleton
include ::ActionView::Helpers::TextHelper
end
-end \ No newline at end of file
+end
diff --git a/lib/glsamaker/http.rb b/lib/glsamaker/http.rb
index 0861165..be48898 100644
--- a/lib/glsamaker/http.rb
+++ b/lib/glsamaker/http.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
@@ -34,4 +34,4 @@ module Glsamaker
module_function :get
end
-end \ No newline at end of file
+end
diff --git a/lib/glsamaker/portage.rb b/lib/glsamaker/portage.rb
index 168a2a1..a039c9e 100644
--- a/lib/glsamaker/portage.rb
+++ b/lib/glsamaker/portage.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
@@ -149,4 +149,4 @@ module Glsamaker
end
end
-end \ No newline at end of file
+end
diff --git a/lib/tasks/utils.rb b/lib/tasks/utils.rb
index 1d19af1..3e49702 100644
--- a/lib/tasks/utils.rb
+++ b/lib/tasks/utils.rb
@@ -1,5 +1,5 @@
# ===GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb
index fa12878..582ccee 100644
--- a/test/unit/user_test.rb
+++ b/test/unit/user_test.rb
@@ -1,5 +1,5 @@
# GLSAMaker v2
-# Copyright (C) 2009 Alex Legler <a3li@gentoo.org>
+# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by