lib/alexandria/about.rb in alexandria-book-collection-manager-0.7.1 vs lib/alexandria/about.rb in alexandria-book-collection-manager-0.7.2

- old
+ new

@@ -1,6 +1,7 @@ -# encoding: utf-8 +# frozen_string_literal: true + # Copyright (C) 2004-2006 Laurent Sansonetti # Copyright (C) 2008 Joseph Method # Copyright (C) 2015 Matijs van Zuijlen # # Alexandria is free software; you can redistribute it and/or @@ -17,17 +18,17 @@ # License along with Alexandria; see the file COPYING. If not, # write to the Free Software Foundation, Inc., 51 Franklin Street, # Fifth Floor, Boston, MA 02110-1301 USA. module Alexandria - TITLE = 'Alexandria'.freeze - TEXTDOMAIN = 'alexandria'.freeze + TITLE = 'Alexandria' + TEXTDOMAIN = 'alexandria' extend GetText bindtextdomain(Alexandria::TEXTDOMAIN, charset: 'UTF-8') DESCRIPTION = _('A program to help you manage your book collection.') COPYRIGHT = "Copyright (C) 2004-2006 Laurent Sansonetti\n" \ - 'Copyright (C) 2007-2010,2014,2015 Alexandria Contributors'.freeze + 'Copyright (C) 2007-2010,2014,2015 Alexandria Contributors' AUTHORS = [ 'Alexander McCormmach <alexander@tunicate.org>', 'Aymeric Nys <aymeric@nnx.com>', 'Cathal Mc Ginley <cathal.alexandria@gnostai.org>', 'Claudio Belotti <bel8@lilik.it>', @@ -75,8 +76,8 @@ ].freeze ARTISTS = [ 'Andreas Nilsson <nisses.mail@home.se>', 'Stefanie Dijoux <stefanie.dijoux@gmail.com>' ].freeze - BUGREPORT_URL = 'http://www.github.com/mvz/alexandria-book-collection-manager/issues'.freeze - WEBSITE_URL = 'http://www.github.com/mvz/alexandria-book-collection-manager'.freeze + BUGREPORT_URL = 'http://www.github.com/mvz/alexandria-book-collection-manager/issues' + WEBSITE_URL = 'http://www.github.com/mvz/alexandria-book-collection-manager' end