From 8e13e19461e7fae0037a17378a3e4732ed131e21 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Fri, 21 Sep 2018 14:39:07 +0200 Subject: Add license header to source files. --- lib/band.rb | 16 ++++++++++++++++ lib/contact.rb | 16 ++++++++++++++++ lib/member.rb | 16 ++++++++++++++++ lib/pdf_form.rb | 16 ++++++++++++++++ lib/registration.rb | 16 ++++++++++++++++ lib/song.rb | 16 ++++++++++++++++ 6 files changed, 96 insertions(+) (limited to 'lib') diff --git a/lib/band.rb b/lib/band.rb index dc69642..4e1ca81 100644 --- a/lib/band.rb +++ b/lib/band.rb @@ -1,3 +1,19 @@ +# Band registration form for Norsk Urskog Metal Sampler +# Copyright (C) 2015-2018 Harald Eilersen +# +# 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 . + require_relative 'contact' require_relative 'member' require_relative 'song' diff --git a/lib/contact.rb b/lib/contact.rb index 4df29e8..5cf42e6 100644 --- a/lib/contact.rb +++ b/lib/contact.rb @@ -1,3 +1,19 @@ +# Band registration form for Norsk Urskog Metal Sampler +# Copyright (C) 2015-2018 Harald Eilersen +# +# 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 . + class Contact attr_reader :name, :street, :postcode, :city, :phone, :email diff --git a/lib/member.rb b/lib/member.rb index 598b5f4..695ea75 100644 --- a/lib/member.rb +++ b/lib/member.rb @@ -1,3 +1,19 @@ +# Band registration form for Norsk Urskog Metal Sampler +# Copyright (C) 2015-2018 Harald Eilersen +# +# 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 . + class Member attr_reader :name, :instrument, :age diff --git a/lib/pdf_form.rb b/lib/pdf_form.rb index b8b156c..6add3ef 100644 --- a/lib/pdf_form.rb +++ b/lib/pdf_form.rb @@ -1,3 +1,19 @@ +# Band registration form for Norsk Urskog Metal Sampler +# Copyright (C) 2015-2018 Harald Eilersen +# +# 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 . + require 'prawn' require 'prawn/measurement_extensions' diff --git a/lib/registration.rb b/lib/registration.rb index 7d1e704..9d5e57e 100644 --- a/lib/registration.rb +++ b/lib/registration.rb @@ -1,3 +1,19 @@ +# Band registration form for Norsk Urskog Metal Sampler +# Copyright (C) 2015-2018 Harald Eilersen +# +# 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 . + require_relative 'band' require_relative 'pdf_form' require 'date' diff --git a/lib/song.rb b/lib/song.rb index 482834e..a3968f4 100644 --- a/lib/song.rb +++ b/lib/song.rb @@ -1,3 +1,19 @@ +# Band registration form for Norsk Urskog Metal Sampler +# Copyright (C) 2015-2018 Harald Eilersen +# +# 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 . + class Song attr_reader :title, :time, :isrc, :composers, :performers, :notes -- cgit v1.2.3