Skip to content

Commit

Permalink
Renamed to Accounticious
Browse files Browse the repository at this point in the history
  • Loading branch information
und3f committed Dec 17, 2009
1 parent f30dca1 commit 44bbe74
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,3 +1,3 @@
*.swp
/log
/accountious.conf
/accounticious.conf
6 changes: 3 additions & 3 deletions README
@@ -1,4 +1,4 @@
Accountious
Accounticious

Content:
1. About
Expand All @@ -10,7 +10,7 @@ Content:

1. About
===========
Accountious is a accounting system based on Mojo web framework.
Accounticious is a accounting system based on Mojo web framework.
Primary aims are to create simple, fast, easy and free accounting system.

2. People
Expand All @@ -27,7 +27,7 @@ See file LICENSE.

5. Links
===========
http://github.com/und3f/accountious -- repo of project
http://github.com/und3f/accounticious -- repo of project
http://zendevelopment.ru -- site of zendevelopment group

6. Feedback
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions lib/Accountious.pm → lib/Accounticious.pm
@@ -1,4 +1,4 @@
package Accountious;
package Accounticious;

our $VERSION = 0.1;

Expand Down Expand Up @@ -34,7 +34,7 @@ sub startup {
my $self = shift;

# Load configuration
$self->_load_config_file( $self->home->rel_file('accountious.conf') );
$self->_load_config_file( $self->home->rel_file('accounticious.conf') );

# Use latests templates
$self->renderer->default_handler('ep');
Expand Down
@@ -1,4 +1,4 @@
package Accountious::Account;
package Accounticious::Account;

use strict;
use warnings;
Expand Down
23 changes: 0 additions & 23 deletions script/accountious

This file was deleted.

4 changes: 2 additions & 2 deletions t/basic.t
Expand Up @@ -6,9 +6,9 @@ use warnings;
use Test::More tests => 5;
use Test::Mojo;

use_ok('Accountious');
use_ok('Accounticious');

# Test
my $t = Test::Mojo->new(app => 'Accountious');
my $t = Test::Mojo->new(app => 'Accounticious');
$t->get_ok('/')->status_is(200)->content_type_is(Server => 'text/html')
->content_like(qr/Mojolicious Web Framework/i);
2 changes: 1 addition & 1 deletion templates/account/index.html.ep
@@ -1,3 +1,3 @@
% layout 'default';
<h2>Welcome to Accountious</h2>
<h2>Welcome to Accounticious</h2>
Will be done soon!

0 comments on commit 44bbe74

Please sign in to comment.