In your shell:
cd ~/.vim
git clone git://github.com/juvenn/mustache.vim.git
mv mustache.vim/syntax/* syntax/
mv mustache.vim/indent/* indent/
mv mustache.vim/ftdetect/* ftdetect/rm -rf mustache.vim
| # | |
| # bash completion support for core Git. | |
| # | |
| # Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
| # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
| # Distributed under the GNU General Public License, version 2.0. | |
| # | |
| # The contained completion routines provide support for completing: | |
| # | |
| # *) local and remote branch names |
| # Package Maintainer: Increment phusion_release to match latest release available | |
| %define phusion_release 2011.03 | |
| Summary: Ruby Enterprise Edition (Release %{phusion_release}) | |
| Name: ruby-enterprise | |
| Vendor: Phusion.nl <[email protected]> | |
| Packager: Adam Vollrath <[email protected]> | |
| Version: 1.8.7 | |
| Release: 8%{dist} | |
| License: Ruby or GPL v2 |
| #!/bin/sh | |
| set -u | |
| set -e | |
| # Example init script, this can be used with nginx, too, | |
| # since nginx and unicorn accept the same signals | |
| # Feel free to change any of the following variables for your app: | |
| APP_ROOT=/home/deploy/public_html/rm/current | |
| PID=$APP_ROOT/tmp/pids/unicorn.pid | |
| ENV=production |
In your shell:
cd ~/.vim
git clone git://github.com/juvenn/mustache.vim.git
mv mustache.vim/syntax/* syntax/
mv mustache.vim/indent/* indent/
mv mustache.vim/ftdetect/* ftdetect/rm -rf mustache.vim
| %define _base node | |
| Name: %{_base}js | |
| Version: 0.4.2 | |
| Release: 1%{?dist} | |
| Summary: Evented I/O for V8 Javascript. | |
| Packager: Susan Potter <[email protected]> | |
| Vendor: http://nodejs.org | |
| Group: Development/Libraries | |
| License: MIT License |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| my @GLOBAL_BUFFERS = qw( | |
| key_buffer_size | |
| innodb_buffer_pool_size | |
| innodb_log_buffer_size | |
| innodb_additional_mem_pool_size |
| #!/bin/sh | |
| SEC=$1 | |
| tcpdump -s 65535 -nn -q -tttt -x port 3306 -l > /tmp/tcpdump.3306 2> /dev/null & | |
| PID_3306=$! | |
| tcpdump -s 65535 -nn -q -tttt -x port 11211 -l > /tmp/tcpdump.11211 2> /dev/null & | |
| PID_11211=$! |
| template "/tmp/foo.rb" | |
| source "foo.rb.erb" | |
| cookbook "banana" | |
| end |
| #!/bin/bash | |
| # CentOS rbenv system wide installation script | |
| # Forked from https://gist.github.com/1237417 | |
| # Installs rbenv system wide on CentOS 5/6, also allows single user installs. | |
| # Install pre-requirements | |
| yum install -y gcc-c++ patch readline readline-devel zlib zlib-devel libyaml-devel libffi-devel openssl-devel \ | |
| make bzip2 autoconf automake libtool bison iconv-devel git-core |
| #!perl | |
| use strict; | |
| use warnings; | |
| use Net::Google::Calendar; | |
| use Config::Pit; | |
| use DateTime; | |
| use Email::MIME; | |
| use Data::Dumper; | |
| use HTTP::Date (); | |
| use FindBin; |