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
## --- install plack | |
cpanm Plack | |
# -- save this file as jbrowse.plack | |
use Plack::App::Directory; | |
my $app = Plack::App::Directory->new({ root => '.'})->to_app; | |
$app; | |
## -- drop it at the top level of jbrowse folder |
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
require 'formula' | |
class Vim < Formula | |
homepage 'http://www.vim.org/' | |
url 'https://vim.googlecode.com/hg/', :revision => '57e8b75298d6' | |
version '7.3.712' | |
def features; %w(tiny small normal big huge) end | |
def interp; %w(lua mzscheme perl python python3 tcl ruby) end |