Skip to content

Commit

Permalink
Merge branch 'master' of github.com:sharyanto/perl-App-SerializeUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
sharyanto committed Oct 26, 2013
2 parents deb6b5e + ee5489a commit 8a666d1
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 18 deletions.
2 changes: 0 additions & 2 deletions bin/check-json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

#package check_json; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand Down
2 changes: 0 additions & 2 deletions bin/check-yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

#package check_yaml; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand Down
3 changes: 1 addition & 2 deletions bin/dd2json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

package dd2json; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand All @@ -15,3 +13,4 @@ print to_json(eval(scalar <>));

1;
#ABSTRACT: Convert Data::Dump to JSON serialization
#PODNAME: dd2json
3 changes: 1 addition & 2 deletions bin/dd2yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

package dd2yaml; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand All @@ -15,3 +13,4 @@ print Dump(eval(scalar <>));

1;
#ABSTRACT: Convert Data::Dump to YAML serialization
#PODNAME: dd2yaml
3 changes: 1 addition & 2 deletions bin/json2dd
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

package json2dd; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand All @@ -16,3 +14,4 @@ dd(JSON->new->allow_nonref->decode(~~<>));

1;
#ABSTRACT: Convert JSON to Data::Dump serialization
#PODNAME: json2dd
3 changes: 1 addition & 2 deletions bin/json2yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

package json2yaml; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand All @@ -16,3 +14,4 @@ print Dump(JSON->new->allow_nonref->decode(~~<>));

1;
#ABSTRACT: Convert JSON to YAML serialization
#PODNAME: json2yaml
3 changes: 1 addition & 2 deletions bin/pp-json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

package pp_json; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand All @@ -15,3 +13,4 @@ print to_json(from_json(scalar <>), {pretty=>1});

1;
#ABSTRACT: Pretty-print JSON
#PODNAME: pp-json
3 changes: 1 addition & 2 deletions bin/yaml2dd
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

package yaml2dd; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand All @@ -16,3 +14,4 @@ dd(Load(scalar <>));

1;
#ABSTRACT: Convert YAML to Data::Dump serialization
#PODNAME: yaml2dd
3 changes: 1 addition & 2 deletions bin/yaml2json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/perl

package yaml2json; # make PodWeaver happy

use 5.010;
use strict;
use warnings;
Expand All @@ -16,3 +14,4 @@ print to_json(Load(scalar <>));

1;
#ABSTRACT: Convert YAML to JSON
#PODNAME: yaml2json

0 comments on commit 8a666d1

Please sign in to comment.