-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
35 additions
and
42 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 |
---|---|---|
@@ -1,14 +1,28 @@ | ||
{ | ||
"perl" : "6.*", | ||
"name" : "Propius", | ||
"version" : "0.1.0", | ||
"description" : "Memory cache with loader and eviction by time.", | ||
"author" : [ "Mikhail Khorkov" ], | ||
"license" : "Artistic-2.0", | ||
"provides" : { | ||
"Propius" : "lib/Propius.pm6" | ||
}, | ||
"depends" : [ "TimeUnit", "OO::Monitors" ], | ||
"tags": [ "cache" ], | ||
"source-url" : "git://github.com/atroxaper/p6-Propius.git" | ||
"perl": "6.c", | ||
"name": "Propius", | ||
"auth": "github:atroxaper", | ||
"api": "1", | ||
"version": "0.1.1", | ||
"description": "Memory cache with loader and eviction by time.", | ||
"authors": [ | ||
"Mikhail Khorkov" | ||
], | ||
"license": "Artistic-2.0", | ||
"provides": { | ||
"Propius": "lib/Propius.pm6", | ||
"Propius::Linked": "lib/Propius/Linked.pm6" | ||
}, | ||
"depends": [ | ||
"TimeUnit", | ||
"OO::Monitors" | ||
], | ||
"build-depends": [], | ||
"test-depends": [], | ||
"resources": [], | ||
"tags": [ | ||
"cache", | ||
"eviction" | ||
], | ||
"source-url": "git://github.com/atroxaper/p6-Propius.git" | ||
} |
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
unit module Propius; | ||
|
||
use OO::Monitors; | ||
|
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 |
---|---|---|
@@ -1,7 +1,3 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
unit module Propius::Linked; | ||
|
||
class Node { | ||
|
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
use Test; | ||
use lib 'lib'; | ||
use Propius::Linked; | ||
|
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
use Test; | ||
use lib 'lib'; | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
use Test; | ||
use lib 'lib'; | ||
use Propius; | ||
|
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
use Test; | ||
use lib 'lib'; | ||
use Propius; | ||
|
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
use Test; | ||
use TimeUnit; | ||
use lib 'lib'; | ||
|