This file contains hidden or 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
#!/usr/bin/env perl | |
use 5.010; | |
use strict; | |
use warnings; | |
package App::watch; | |
use Moose; | |
use File::ChangeNotify; |
This file contains hidden or 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
use strict; | |
use warnings; | |
use Test::Most; | |
use Plack::Test; | |
use HTTP::Request::Common; | |
use Cwd; | |
my $app_path = cwd() . '/bin/dicole-eventserver.psgi'; | |
my $app = do($app_path) or die "$!: $app_path\n"; |
This file contains hidden or 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 any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by fish configure 1.23.1, which was | |
generated by GNU Autoconf 2.61. Invocation command line was | |
$ ./configure --prefix=/Users/wolverian/Applications/Homebrew/Cellar/fish/1.23.1 --without-xsel | |
## --------- ## | |
## Platform. ## |
This file contains hidden or 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
class Foo(val foo: Int) { | |
def lol = 42 | |
} |
NewerOlder