lib/ronin/license.rb in ronin-1.5.0 vs lib/ronin/license.rb in ronin-1.5.1

- old
+ new

@@ -1,9 +1,9 @@ # -# Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com) # -# This file is part of Ronin. +# This file is part of ronin. # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. @@ -12,11 +12,11 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with Ronin. If not, see <http://www.gnu.org/licenses/>. +# along with Ronin. If not, see <https://www.gnu.org/licenses/>. # require 'ronin/model' require 'ronin/model/has_unique_name' @@ -95,22 +95,22 @@ # General Public License, version 2 predefine :gpl2, :name => 'GPL-2', :description => 'GNU Public License v2.0', - :url => 'http://www.gnu.org/licenses/gpl-2.0.txt' + :url => 'https://www.gnu.org/licenses/gpl-2.0.txt' # General Public License, version 3 predefine :gpl3, :name => 'GPL-3', :description => 'GNU Public License v3.0', - :url => 'http://www.gnu.org/licenses/gpl-3.0.txt' + :url => 'https://www.gnu.org/licenses/gpl-3.0.txt' # Lesser General Public License, version 3 predefine :lgpl3, :name => 'LGPL-3', :description => 'GNU Lesser General Public License v3.0', - :url => 'http://www.gnu.org/licenses/lgpl-3.0.txt' + :url => 'https://www.gnu.org/licenses/lgpl-3.0.txt' # The MIT "as-is" License predefine :mit, :name => 'MIT', :description => 'The MIT Licence',