-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from ganezdragon/feature/improve_performance
Performances fixes
- Loading branch information
Showing
21 changed files
with
490,704 additions
and
1,669,256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ node_modules/ | |
9.3.5/ | ||
bin/ | ||
build/ | ||
prebuilds/ | ||
|
||
# swift bindings | ||
.build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
use strict; | ||
use warnings; | ||
use base qw/Catalyst::Controller/; | ||
|
||
=head1 METHODS | ||
=head2 test1 | ||
Test | ||
=cut | ||
|
||
sub test1 : Path('/') { | ||
} | ||
|
||
=head2 test2 | ||
Looks good. But now... | ||
=cut | ||
|
||
sub test2 : Path('/') Args(0) { | ||
} | ||
|
||
=head3 test3 | ||
Hmmm, this is looks odd now | ||
=cut | ||
|
||
sub test3 { | ||
} | ||
|
||
1; |
Oops, something went wrong.