Skip to content

Commit

Permalink
Preparing for v1.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gryphonshafer committed Nov 19, 2015
1 parent dddb5eb commit e8f71f4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
18 changes: 11 additions & 7 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.039.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.041.
use strict;
use warnings;

use 5.008;
use 5.016;

use ExtUtils::MakeMaker;

Expand All @@ -17,9 +17,10 @@ my %WriteMakefileArgs = (
"bin/dest"
],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.008",
"MIN_PERL_VERSION" => "5.016",
"NAME" => "App::Dest",
"PREREQ_PM" => {
"Cwd" => 0,
"File::Basename" => 0,
"File::Copy::Recursive" => 0,
"File::DirCompare" => 0,
Expand All @@ -33,16 +34,17 @@ my %WriteMakefileArgs = (
"warnings" => 0
},
"TEST_REQUIRES" => {
"Cwd" => 0,
"Exporter" => 0,
"File::Copy" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::More" => 0,
"Test::Most" => 0,
"blib" => "1.01",
"constant" => 0
"lib" => 0
},
"VERSION" => "1.13",
"VERSION" => "1.14",
"test" => {
"TESTS" => "t/*.t"
}
Expand All @@ -51,7 +53,9 @@ my %WriteMakefileArgs = (

my %FallbackPrereqs = (
"Cwd" => 0,
"Exporter" => 0,
"File::Basename" => 0,
"File::Copy" => 0,
"File::Copy::Recursive" => 0,
"File::DirCompare" => 0,
"File::Find" => 0,
Expand All @@ -66,7 +70,7 @@ my %FallbackPrereqs = (
"Text::Diff" => 0,
"Try::Tiny" => 0,
"blib" => "1.01",
"constant" => 0,
"lib" => 0,
"strict" => 0,
"warnings" => 0
);
Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ App::Dest - Deployment State Manager

# VERSION

version 1.13
version 1.14

[![Build Status](https://travis-ci.org/gryphonshafer/dest.svg)](https://travis-ci.org/gryphonshafer/dest)
[![Coverage Status](https://coveralls.io/repos/gryphonshafer/dest/badge.png)](https://coveralls.io/r/gryphonshafer/dest)
Expand All @@ -16,7 +16,7 @@ dest COMMAND \[DIR || NAME\]
dest init # initialize dest for a project
dest add DIR # add a directory to dest tracking list
dest rm DIR # remove a directory from dest tracking list
dest make NAME # create a named template set (set of 3 files)
dest make NAME [EXT] # create a named template set (set of 3 files)
dest watches # returns a list of watched directories
dest list [NAME] # dump a list of the template set (set of 3 files)
dest status # check status of tracked directories
Expand Down Expand Up @@ -95,7 +95,7 @@ the verify file let's you verify the deploy file worked.

This removes a directory from the dest tracking list.

## make NAME
## make NAME \[EXT\]

This is a helper command. Given a directory you've already added, it will create
the subdirectory and deploy, revert, and verify files.
Expand All @@ -108,6 +108,14 @@ So if you want, you can do something like this:

vi `dest make db/schema`

Optionally, you can specify an extention for the created files. For example:

vi `dest make db/schema sql`
# this will create and open in vi:
# db/schema/deploy.sql
# db/schema/revert.sql
# db/schema/verify.sql

## watches

Returns a list of tracked or watched directories.
Expand Down

0 comments on commit e8f71f4

Please sign in to comment.