App-Unding

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         }
      },
      "develop" : {
         "requires" : {
            "Test::Script" : "1.10"
         }
      },
      "runtime" : {
         "requires" : {
            "Crypt::Blowfish" : "0",
            "Crypt::CBC" : "0",
            "Cwd" : "0",
            "Data::Serializer" : "0",
            "File::Copy" : "0",
            "File::Path" : "0",
            "File::Slurp" : "0",
            "Term::ReadKey" : "0",
            "perl" : "v5.6.0",
            "strict" : "0",
            "warnings" : "0"
         }

META.yml  view on Meta::CPAN

  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: App-Unding
requires:
  Crypt::Blowfish: '0'
  Crypt::CBC: '0'
  Cwd: '0'
  Data::Serializer: '0'
  File::Copy: '0'
  File::Path: '0'
  File::Slurp: '0'
  Term::ReadKey: '0'
  perl: v5.6.0
  strict: '0'
  warnings: '0'
resources:

Makefile.PL  view on Meta::CPAN

  },
  "DISTNAME" => "App-Unding",
  "EXE_FILES" => [
    "bin/unding"
  ],
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.006000",
  "NAME" => "App::Unding",
  "PREREQ_PM" => {
    "Crypt::Blowfish" => 0,
    "Crypt::CBC" => 0,
    "Cwd" => 0,
    "Data::Serializer" => 0,
    "File::Copy" => 0,
    "File::Path" => 0,
    "File::Slurp" => 0,
    "Term::ReadKey" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {

Makefile.PL  view on Meta::CPAN

  },
  "VERSION" => "0.012",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Crypt::Blowfish" => 0,
  "Crypt::CBC" => 0,
  "Cwd" => 0,
  "Data::Serializer" => 0,
  "File::Copy" => 0,
  "File::Path" => 0,
  "File::Slurp" => 0,
  "Term::ReadKey" => 0,
  "Test::Script" => "1.10",
  "strict" => 0,
  "warnings" => 0
);

bin/unding  view on Meta::CPAN

# ABSTRACT: dark magic, encrypted wallet

use v5.6.0;

use Cwd qw(getcwd abs_path);
use File::Copy;
use File::Path 'remove_tree';
use File::Slurp;
use Term::ReadKey;
use Data::Serializer;
#cpanm Crypt::CBC
#cpanm Crypt::Blowfish

my  $DATA_ptr;
our $old_state; # what was in DATA, when script started
our $new_state; # what should be in DATA, after script ends
our $encrypt_mode = 0;

INIT {
    $DATA_ptr = tell DATA;        # where is DATA?
    $old_state = join "", <DATA>; # slurp

dist.ini  view on Meta::CPAN

[UploadToCPAN]

; put version into source code of each module (will not be in Git!!!)
[PkgVersion]

; find all needed CPAN dependencies
[AutoPrereqs]
skip = ^App::FatPacker$

[Prereqs]
Crypt::CBC = 0
Crypt::Blowfish = 0

; add general information to POD in each module
[PodWeaver]

; Zusatz-Angaben
[MetaResources]
homepage          = https://gitlab.com/borisdaeppen/App-Unding
;bugtracker.web    = http://rt.cpan.org/NoAuth/Bugs.html?Dist=Project
;bugtracker.mailto = bug-project@rt.cpan.org



( run in 0.777 second using v1.01-cache-2.11-cpan-df04353d9ac )