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
#****************************************************************************** | |
# | |
# Makefile - Rules for building the hello example. | |
# | |
# Copyright (c) 2006-2011 Texas Instruments Incorporated. All rights reserved. | |
# ... | |
# | |
#****************************************************************************** | |
# |
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
[bcochran@schala test|master %]$ git push -f deis master | |
-----> Ruby app detected | |
-----> Compiling Ruby/Rack | |
-----> Using Ruby version: ruby-1.9.3 | |
-----> Installing dependencies using 1.5.2 | |
Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment | |
Using daemons (1.1.9) | |
Using haml (3.1.7) | |
Using bundler (1.5.2) | |
Using tilt (1.3.3) |
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
# PRODUCTION | |
# | |
production: | |
adapter: postgresql | |
encoding: unicode | |
database: gitlab_ci_production | |
pool: 5 | |
username: 'gitlab_ci' | |
password: | |
host: |
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
require 'rubygems' | |
require 'httpi' | |
require 'curb' | |
require 'pp' | |
require 'json' | |
################################ | |
# kinit user@REALM | |
# kinit -k -t /ticket/path | |
################################ |
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
require 'formula' | |
class Avarice < Formula | |
homepage 'http://sourceforge.net/projects/avarice/' | |
url 'http://downloads.sourceforge.net/project/avarice/avarice/avarice-2.13/avarice-2.13.tar.bz2' | |
sha1 'b0bc56d587600651c0e61be676177b2eebfad3ae' | |
head 'http://svn.code.sf.net/p/avarice/code/trunk/avarice' | |
depends_on 'libusb-compat' |