Skip to content

Commit

Permalink
Merge branch 'release/v0.22' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
szabgab committed Nov 20, 2011
2 parents f33088c + d026da7 commit 7e1c8ab
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
Changes to the Dwimmer system. See http://dwimmer.org/

v0.21 2011.11.20
v0.22 2011.11.20

- Move the site checking to the 'before' hook to eliminate duplication.
- Use the _clean_params function instaed of manual implementations.
Expand Down
12 changes: 6 additions & 6 deletions MANIFEST.SKIP
Expand Up @@ -49,12 +49,12 @@ MYMETA\.(?:yml|yaml|json)$
SETUP.bat

# copied to the share/ directory
^public\b
^schema\b
^views\b
^environments\b
^bin\n
^config.yml
#^public\b
#^schema\b
#^views\b
#^environments\b
#^bin\n
#^config.yml


# need to include the share directory as well as apparently
Expand Down
2 changes: 1 addition & 1 deletion lib/Dwimmer.pm
Expand Up @@ -3,7 +3,7 @@ use Dancer ':syntax';

use 5.008005;

our $VERSION = '0.21';
our $VERSION = '0.22';

use Data::Dumper qw(Dumper);
use Dwimmer::DB;
Expand Down
2 changes: 1 addition & 1 deletion lib/Dwimmer/Admin.pm
Expand Up @@ -3,7 +3,7 @@ use Dancer ':syntax';

use 5.008005;

our $VERSION = '0.21';
our $VERSION = '0.22';

use Data::Dumper qw(Dumper);
use Email::Valid ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Dwimmer/Client.pm
Expand Up @@ -8,7 +8,7 @@ has host => ( is => 'ro', isa => 'Str', required => 1 );
has mech => ( is => 'rw', isa => 'WWW::Mechanize', default => sub { WWW::Mechanize->new } );


our $VERSION = '0.21';
our $VERSION = '0.22';

# get_user parameters can be id => 1

Expand Down
2 changes: 1 addition & 1 deletion lib/Dwimmer/Tools.pm
Expand Up @@ -9,7 +9,7 @@ use YAML;

use Dwimmer::DB;

our $VERSION = '0.21';
our $VERSION = '0.22';

our $SCHEMA_VERSION = 1;

Expand Down
1 change: 1 addition & 0 deletions t/015_polls.t
Expand Up @@ -14,6 +14,7 @@ eval "use Test::More";
eval "use Test::Deep";
require Test::WWW::Mechanize;
plan( skip_all => 'Unsupported OS' ) if not $run;
plan( skip_all => 'temporary skip' );

my $url = "http://localhost:$ENV{DWIMMER_PORT}";

Expand Down

0 comments on commit 7e1c8ab

Please sign in to comment.