Skip to content

Commit

Permalink
add MANIFEST and etc
Browse files Browse the repository at this point in the history
  • Loading branch information
sharifulin committed Jul 4, 2012
1 parent ad08433 commit 0fc219a
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*.tar.gz
MANIFEST.SKIP
MANIFEST.SKIP.*
.DS_Store
17 changes: 17 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Build.PL
Changes
lib/Mojolicious/Plugin/I18N.pm
Makefile.PL
MANIFEST
META.yml
README.pod
script/App.pm
script/app_i18n_mail.pl
script/test.mail.ep
t/App/I18n.pm
t/App/I18n/en_us.pm
t/i18n.t
t/i18n_app.t
t/i18n_lite_app.t
t/i18n_shortcut_lite_app.t
t/i18n_url_for.t
32 changes: 32 additions & 0 deletions META.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
abstract: 'Internationalization Plugin for Mojolicious 3.x and higher'
author:
- 'Anatoly Sharifulin <sharifulin@gmail.com>'
build_requires:
Test::More: 0
configure_requires:
Module::Build: 0.36
generated_by: 'Module::Build version 0.3603'
keywords:
- mojo
- mojolicious
- plugin
- i18n
- internationalization
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Mojolicious-Plugin-I18N
provides:
Mojolicious::Plugin::I18N:
file: lib/Mojolicious/Plugin/I18N.pm
version: 0.8
requires:
I18N::LangTags: 0
Mojolicious: 3
perl: 5.010001
resources:
license: http://dev.perl.org/licenses/
repository: http://github.com/sharifulin/Mojolicious-Plugin-I18N
version: 0.8
17 changes: 17 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.3603
require 5.010001;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'Mojolicious::Plugin::I18N',
'VERSION_FROM' => 'lib/Mojolicious/Plugin/I18N.pm',
'PREREQ_PM' => {
'I18N::LangTags' => 0,
'Mojolicious' => '3',
'Test::More' => 0
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {}
)
;

0 comments on commit 0fc219a

Please sign in to comment.