summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/evendoors.rb18
-rw-r--r--lib/evendoors/board.rb17
-rw-r--r--lib/evendoors/door.rb17
-rw-r--r--lib/evendoors/link.rb17
-rw-r--r--lib/evendoors/particle.rb17
-rw-r--r--lib/evendoors/room.rb17
-rw-r--r--lib/evendoors/spin.rb17
-rw-r--r--lib/evendoors/spot.rb17
8 files changed, 137 insertions, 0 deletions
diff --git a/lib/evendoors.rb b/lib/evendoors.rb
index 9c2ae84..0a3ceca 100644
--- a/lib/evendoors.rb
+++ b/lib/evendoors.rb
@@ -1,6 +1,24 @@
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
+# Copyright 2012 Jérémy Zurcher <jeremy@asynk.ch>
+#
+# This file is part of evendoors-ruby.
+#
+# evendoors-ruby 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.
+#
+# evendoors-ruby 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 evendoors-ruby. If not, see <http://www.gnu.org/licenses/>.
+
+#
module EvenDoors
#
PATH_SEP = '/'.freeze
diff --git a/lib/evendoors/board.rb b/lib/evendoors/board.rb
index b9b01cd..244f51b 100644
--- a/lib/evendoors/board.rb
+++ b/lib/evendoors/board.rb
@@ -1,5 +1,22 @@
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
+#
+# Copyright 2012 Jérémy Zurcher <jeremy@asynk.ch>
+#
+# This file is part of evendoors-ruby.
+#
+# evendoors-ruby 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.
+#
+# evendoors-ruby 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 evendoors-ruby. If not, see <http://www.gnu.org/licenses/>.
#
module EvenDoors
diff --git a/lib/evendoors/door.rb b/lib/evendoors/door.rb
index ba8bde6..8a937d5 100644
--- a/lib/evendoors/door.rb
+++ b/lib/evendoors/door.rb
@@ -1,5 +1,22 @@
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
+#
+# Copyright 2012 Jérémy Zurcher <jeremy@asynk.ch>
+#
+# This file is part of evendoors-ruby.
+#
+# evendoors-ruby 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.
+#
+# evendoors-ruby 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 evendoors-ruby. If not, see <http://www.gnu.org/licenses/>.
#
module EvenDoors
diff --git a/lib/evendoors/link.rb b/lib/evendoors/link.rb
index 148f2f8..1e11191 100644
--- a/lib/evendoors/link.rb
+++ b/lib/evendoors/link.rb
@@ -1,5 +1,22 @@
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
+#
+# Copyright 2012 Jérémy Zurcher <jeremy@asynk.ch>
+#
+# This file is part of evendoors-ruby.
+#
+# evendoors-ruby 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.
+#
+# evendoors-ruby 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 evendoors-ruby. If not, see <http://www.gnu.org/licenses/>.
#
module EvenDoors
diff --git a/lib/evendoors/particle.rb b/lib/evendoors/particle.rb
index f4c4ab7..ac9ee3b 100644
--- a/lib/evendoors/particle.rb
+++ b/lib/evendoors/particle.rb
@@ -1,5 +1,22 @@
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
+#
+# Copyright 2012 Jérémy Zurcher <jeremy@asynk.ch>
+#
+# This file is part of evendoors-ruby.
+#
+# evendoors-ruby 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.
+#
+# evendoors-ruby 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 evendoors-ruby. If not, see <http://www.gnu.org/licenses/>.
#
module EvenDoors
diff --git a/lib/evendoors/room.rb b/lib/evendoors/room.rb
index 151cd8a..a3efc7a 100644
--- a/lib/evendoors/room.rb
+++ b/lib/evendoors/room.rb
@@ -1,5 +1,22 @@
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
+#
+# Copyright 2012 Jérémy Zurcher <jeremy@asynk.ch>
+#
+# This file is part of evendoors-ruby.
+#
+# evendoors-ruby 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.
+#
+# evendoors-ruby 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 evendoors-ruby. If not, see <http://www.gnu.org/licenses/>.
#
module EvenDoors
diff --git a/lib/evendoors/spin.rb b/lib/evendoors/spin.rb
index 882e563..93921a7 100644
--- a/lib/evendoors/spin.rb
+++ b/lib/evendoors/spin.rb
@@ -1,5 +1,22 @@
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
+#
+# Copyright 2012 Jérémy Zurcher <jeremy@asynk.ch>
+#
+# This file is part of evendoors-ruby.
+#
+# evendoors-ruby 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.
+#
+# evendoors-ruby 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 evendoors-ruby. If not, see <http://www.gnu.org/licenses/>.
#
module EvenDoors
diff --git a/lib/evendoors/spot.rb b/lib/evendoors/spot.rb
index 72f5180..68c6676 100644
--- a/lib/evendoors/spot.rb
+++ b/lib/evendoors/spot.rb
@@ -1,5 +1,22 @@
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
+#
+# Copyright 2012 Jérémy Zurcher <jeremy@asynk.ch>
+#
+# This file is part of evendoors-ruby.
+#
+# evendoors-ruby 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.
+#
+# evendoors-ruby 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 evendoors-ruby. If not, see <http://www.gnu.org/licenses/>.
#
module EvenDoors