Run the tests, watch things fail.
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
elsif (!$txn){ | |
# No records found, maybe it the vehicle was exchanged, so check if there | |
# is an exchange record relating to a *CLOSED* RA on record. Again, we | |
# can't rely on the data for the currently OPEN records. | |
my $exchanges = $exchange_rs->search({ | |
date => { '>=' => $transaction_date->ymd }, | |
prev_date_out => { '<=' => $transaction_date->ymd }, | |
vehicle_in => $vehicle->vehicle_no, | |
}); | |
my $clean_transaction_time = $transaction_time; |
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
`})();define(['require','exports','module'], function (require, exports, module) {` | |
# AMD compliant code goes here |
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
PassengerEnabled On | |
PassengerAppRoot /home/pdcawley/typo | |
RewriteEngine On | |
RewriteRule ^/$ /cache/index.html [QSA] | |
RewriteCond %{DOCUMENT_ROOT}/cache/%{REQUEST_FILENAME} -f | |
RewriteRule ^/(.*)$ /cache/$1 [PT] | |
RewriteCond %{DOCUMENT_ROOT}/cache/%{REQUEST_FILENAME}.html -f | |
RewriteRule ^/(.*)$ /cache/$1.html [PT] | |
#RewriteCond %{REQUEST_FILENAME} !-f |
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
use MP::MS5::Types qw[ClientType]; | |
has _client_types => ( | |
is => 'rw', | |
default => sub { [] }, | |
coerce => 1, | |
isa => ClientTypes, | |
traits => [qw(Array)], | |
handles => { | |
register => 'push', |
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
#!/usr/bin/perl | |
use feature ':5.10'; | |
use MooseX::Declare; | |
class Foo { | |
method _test { 1 } | |
method bar ( $f where { _test(')}') } ) { | |
$f |
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
#!/usr/bin/env ruby | |
require File.dirname(__FILE__) + '/../config/boot.rb' | |
require File.dirname(__FILE__) + '/../config/environment.rb' | |
require 'mq' | |
AMQP.start(:host => 'localhost', | |
:insist => true, | |
:logging => true) do |
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
# Devel::Declare::Sugar | |
package Test::Class::Sugar; | |
use Modern::Perl; | |
use Devel::Declare (); | |
use Devel::Declare::Context::Simple; | |
use Carp qw/croak/; | |