summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2018-09-21 14:39:07 +0200
committerHarald Eilertsen <haraldei@anduin.net>2018-09-21 14:39:07 +0200
commit8e13e19461e7fae0037a17378a3e4732ed131e21 (patch)
tree5be8fd16cbe17535411a0b01885da54a895dd123 /lib
parentddff5b8afe18442ebea1e67bd6f77310b5bf9f0f (diff)
downloadnorsk-urskog-registrations-8e13e19461e7fae0037a17378a3e4732ed131e21.tar.gz
norsk-urskog-registrations-8e13e19461e7fae0037a17378a3e4732ed131e21.tar.bz2
norsk-urskog-registrations-8e13e19461e7fae0037a17378a3e4732ed131e21.zip
Add license header to source files.HEADmaster
Diffstat (limited to 'lib')
-rw-r--r--lib/band.rb16
-rw-r--r--lib/contact.rb16
-rw-r--r--lib/member.rb16
-rw-r--r--lib/pdf_form.rb16
-rw-r--r--lib/registration.rb16
-rw-r--r--lib/song.rb16
6 files changed, 96 insertions, 0 deletions
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 <haraldei@anduin.net>
+#
+# 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 <http://www.gnu.org/licenses/>.
+
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 <haraldei@anduin.net>
+#
+# 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 <http://www.gnu.org/licenses/>.
+
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 <haraldei@anduin.net>
+#
+# 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 <http://www.gnu.org/licenses/>.
+
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 <haraldei@anduin.net>
+#
+# 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 <http://www.gnu.org/licenses/>.
+
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 <haraldei@anduin.net>
+#
+# 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 <http://www.gnu.org/licenses/>.
+
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 <haraldei@anduin.net>
+#
+# 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 <http://www.gnu.org/licenses/>.
+
class Song
attr_reader :title, :time, :isrc, :composers, :performers, :notes