Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward committed Sep 22, 2010
0 parents commit 5a2b0da
Show file tree
Hide file tree
Showing 63 changed files with 11,345 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -0,0 +1,4 @@
This file documents the revision history for Perl extension PasteBin.

0.01 2010-09-09 18:10:05
- initial revision, generated by Catalyst
31 changes: 31 additions & 0 deletions META.yml
@@ -0,0 +1,31 @@
---
abstract: 'Catalyst based application'
author:
- Edward
build_requires:
ExtUtils::MakeMaker: 6.42
Test::More: 0.88
configure_requires:
ExtUtils::MakeMaker: 6.42
distribution_type: module
generated_by: 'Module::Install version 1.00'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: PasteBin
no_index:
directory:
- inc
- t
requires:
Catalyst::Action::RenderView: 0
Catalyst::Plugin::ConfigLoader: 0
Catalyst::Plugin::Static::Simple: 0
Catalyst::Runtime: 5.80027
Config::General: 0
Moose: 0
namespace::autoclean: 0
resources:
license: http://dev.perl.org/licenses/
version: 0.01
25 changes: 25 additions & 0 deletions Makefile.PL
@@ -0,0 +1,25 @@
#!/usr/bin/env perl
# IMPORTANT: if you delete this file your app will not work as
# expected. You have been warned.
use inc::Module::Install;
use Module::Install::Catalyst; # Complain loudly if you don't have
# Catalyst::Devel installed or haven't said
# 'make dist' to create a standalone tarball.

name 'PasteBin';
all_from 'lib/PasteBin.pm';

requires 'Catalyst::Runtime' => '5.80027';
requires 'Catalyst::Plugin::ConfigLoader';
requires 'Catalyst::Plugin::Static::Simple';
requires 'Catalyst::Action::RenderView';
requires 'Moose';
requires 'namespace::autoclean';
requires 'Config::General'; # This should reflect the config file format you've chosen
# See Catalyst::Plugin::ConfigLoader for supported formats
test_requires 'Test::More' => '0.88';
catalyst;

install_script glob('script/*.pl');
auto_install;
WriteAll;

0 comments on commit 5a2b0da

Please sign in to comment.