Skip to content

Commit

Permalink
adding license etc
Browse files Browse the repository at this point in the history
  • Loading branch information
bentglasstube committed Jun 5, 2012
1 parent fc7e1a0 commit ac3ce2c
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 7 deletions.
19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright © 2012 Alan Berndt

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
42 changes: 42 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
bin/app.pl
config.yml
config.yml.example
description
environments/development.yml
environments/production.yml
lib/Dancer/Logger/Store.pm
lib/Radio.pm
lib/Radio/Station.pm
LICENSE
Makefile.PL
MANIFEST This list of files
public/add.png
public/bricky.png
public/broken.html
public/dispatch.cgi
public/dispatch.fcgi
public/favicon.ico
public/jquery-ui.min.js
public/jquery.min.js
public/ohgod.jpg
public/search.png
public/style.css
public/unavailable.html
public/unknown.png
README.pod
t/001_base.t
t/002_index_route.t
views/404.tt
views/albums.tt
views/config.tt
views/current.tt
views/layouts/main.tt
views/log.tt
views/login.tt
views/nav.tt
views/news.tt
views/queue.tt
views/song.tt
views/songs.tt
views/tracks.tt
views/upload.tt
15 changes: 10 additions & 5 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,23 @@ use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'radio',
NAME => 'Radio',
AUTHOR => q{YOUR NAME <youremail@example.com>},
VERSION_FROM => 'lib/radio.pm',
VERSION_FROM => 'lib/Radio.pm',
ABSTRACT => 'YOUR APPLICATION ABSTRACT',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'YAML' => 0,
'Dancer' => 1.3011,
'Test::More' => 0,
'YAML' => 0,
'Dancer' => 1.3011,
'Dancer::Plugin::Ajax' => 0,
'Dancer::Plugin::MPD' => 0,
'IO::File' => 0,
'MP3::Tag' => 0,
'POSIX' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'radio-*' },
Expand Down
Empty file removed README
Empty file.
11 changes: 11 additions & 0 deletions README.pod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
=head1 NAME

eatabrick-radio - a web frontend for an mpd-based internet radio station

=head1 AUTHOR

Alan Berndt <alan@eatabrick.org>

=head1 LICENSE

See LICENSE for license details.
2 changes: 1 addition & 1 deletion t/001_base.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ use Test::More tests => 1;
use strict;
use warnings;

use_ok 'radio';
use_ok 'Radio';
2 changes: 1 addition & 1 deletion t/002_index_route.t
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;

# the order is important
use radio;
use Radio;
use Dancer::Test;

route_exists [GET => '/'], 'a route handler is defined for /';
Expand Down

0 comments on commit ac3ce2c

Please sign in to comment.