Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.05.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 12ab97b..406637a 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Web::JenkinsNotification

+0.05    日  5/27 14:31:50 2012
+        - Rename as Web::JenkinsNotification
+
 0.04    日  5/27 14:03:09 2012
         - Might migrate this module to Jenkins::NotificationListener::App
  • Loading branch information
c9s committed May 27, 2012
1 parent b332f0a commit d17c0b6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Web::JenkinsNotification

0.05 日 5/27 14:31:50 2012
- Rename as Web::JenkinsNotification

0.04 日 5/27 14:03:09 2012
- Might migrate this module to Jenkins::NotificationListener::App

Expand Down
2 changes: 1 addition & 1 deletion META.yml
Expand Up @@ -25,4 +25,4 @@ requires:
Plack: 0
resources:
license: http://dev.perl.org/licenses/
version: 0.04
version: 0.05
2 changes: 1 addition & 1 deletion README
Expand Up @@ -6,7 +6,7 @@ SYNOPSIS

builder {
mount "/jenkins" => builder {
enable "JenkinsNotification";
enable "+Web::JenkinsNotification";
sub {
my $env = shift;
my $notification = $env->{ 'jenkins.notification' }; # Jenkins::Notification
Expand Down
2 changes: 1 addition & 1 deletion README.mkdn
Expand Up @@ -8,7 +8,7 @@ Web::JenkinsNotification -

builder {
mount "/jenkins" => builder {
enable "JenkinsNotification";
enable "+Web::JenkinsNotification";
sub {
my $env = shift;
my $notification = $env->{ 'jenkins.notification' }; # Jenkins::Notification
Expand Down
6 changes: 3 additions & 3 deletions lib/Web/JenkinsNotification.pm
@@ -1,8 +1,8 @@
package Web::JenkinsNotification;
use strict;
use warnings;
our $VERSION = '0.04';
use parent qw/Web/;
our $VERSION = '0.05';
use parent qw/Plack::Middleware/;
use Plack::Util;
use Plack::MIME;
use Plack::Util::Accessor qw(on_notify);
Expand Down Expand Up @@ -40,7 +40,7 @@ Web::JenkinsNotification -
builder {
mount "/jenkins" => builder {
enable "JenkinsNotification";
enable "+Web::JenkinsNotification";
sub {
my $env = shift;
my $notification = $env->{ 'jenkins.notification' }; # Jenkins::Notification
Expand Down
2 changes: 1 addition & 1 deletion t/01_plack.t
Expand Up @@ -10,7 +10,7 @@ use File::Read;

test_psgi
app => builder {
enable "JenkinsNotification";
enable "+Web::JenkinsNotification";
sub {
my $env = shift;

Expand Down

0 comments on commit d17c0b6

Please sign in to comment.