Skip to content

Commit

Permalink
final prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
barbie committed Sep 11, 2010
1 parent 674501b commit 24d98c6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,7 +1,7 @@
# Changes log for App-Maisha # Changes log for App-Maisha
============================ ============================


0.14 current 0.14 11/09/2010
- documentation fix for INI format example (thanks to Alan Haggai Alavi). - documentation fix for INI format example (thanks to Alan Haggai Alavi).
- rewrite to Twitter.pm to use OAuth mechanism for logging in. - rewrite to Twitter.pm to use OAuth mechanism for logging in.
- interface to plugins changed, now passes a config hash. - interface to plugins changed, now passes a config hash.
Expand Down
4 changes: 4 additions & 0 deletions META.json
Expand Up @@ -75,6 +75,10 @@
"file": "lib/App/Maisha/Plugin/Identica.pm", "file": "lib/App/Maisha/Plugin/Identica.pm",
"version": "0.14" "version": "0.14"
}, },
"App::Maisha::Plugin::Test": {
"file": "lib/App/Maisha/Plugin/Test.pm",
"version": "0.14"
},
"App::Maisha::Plugin::Twitter": { "App::Maisha::Plugin::Twitter": {
"file": "lib/App/Maisha/Plugin/Twitter.pm", "file": "lib/App/Maisha/Plugin/Twitter.pm",
"version": "0.14" "version": "0.14"
Expand Down
3 changes: 3 additions & 0 deletions META.yml
Expand Up @@ -47,6 +47,9 @@ provides:
App::Maisha::Plugin::Identica: App::Maisha::Plugin::Identica:
file: lib/App/Maisha/Plugin/Identica.pm file: lib/App/Maisha/Plugin/Identica.pm
version: 0.14 version: 0.14
App::Maisha::Plugin::Test:
file: lib/App/Maisha/Plugin/Test.pm
version: 0.14
App::Maisha::Plugin::Twitter: App::Maisha::Plugin::Twitter:
file: lib/App/Maisha/Plugin/Twitter.pm file: lib/App/Maisha/Plugin/Twitter.pm
version: 0.14 version: 0.14
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Maisha/Plugin/Test.pm
Expand Up @@ -3,7 +3,7 @@ package App::Maisha::Plugin::Test;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '0.13'; our $VERSION = '0.14';


#---------------------------------------------------------------------------- #----------------------------------------------------------------------------
# Library Modules # Library Modules
Expand Down
2 changes: 1 addition & 1 deletion t/31plugin-twitter.t
Expand Up @@ -49,7 +49,7 @@ SKIP: {
ok( my $obj = App::Maisha::Plugin::Twitter->new(), "got object" ); ok( my $obj = App::Maisha::Plugin::Twitter->new(), "got object" );
isa_ok($obj,'App::Maisha::Plugin::Twitter'); isa_ok($obj,'App::Maisha::Plugin::Twitter');


my $ret = $obj->login({ home => '.', test => 1 }); my $ret = $obj->login({ username => 'test', home => '.', test => 1 });
is($ret, 1, '.. login done'); is($ret, 1, '.. login done');


my $api = $obj->api(); my $api = $obj->api();
Expand Down

0 comments on commit 24d98c6

Please sign in to comment.