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
$(function () { | |
//create tabs | |
$('.sidebar .content').append('<ul class="ui-tabs-nav"></ul>'); | |
$('.ui-tabs-target fieldset').each(function () { | |
var TabId = $(this).attr('id'); | |
$('.ui-tabs-nav').prepend('<li><a href="#' + TabId + '">' + $('legend',this).text() + '</a></li>'); | |
}); | |
//show / hide tabs | |
var TabTarget = $('.ui-tabs-target > fieldset'); | |
TabTarget.hide().filter(':first').show(); |
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
~/src/root.git/deploy (AutomateDeploymentToQA *) $ cap testwinrm -tv | |
C:/Ruby192/lib/ruby/gems/1.9.1/gems/httpclient-2.1.5.2/lib/httpclient/ssl_config.rb:149:in `add_file': system lib (OpenSSL::X509::StoreError) | |
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/httpclient-2.1.5.2/lib/httpclient/ssl_config.rb:149:in `set_trust_ca' | |
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/handsoap-1.1.7/lib/handsoap/http/drivers/http_client_driver.rb:19:in `send_http_request' | |
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/handsoap-1.1.7/lib/handsoap/service.rb:249:in `invoke' | |
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/winrm-0.0.5/lib/soap/winrm_service.rb:130:in `open_shell' | |
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/winrm-0.0.5/lib/soap/winrm_service.rb:228:in `run_cmd' | |
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/winrm-0.0.5/lib/winrm.rb:82:in `cmd' | |
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/capistrano_winrm-0.0.1/lib/winrm_connection.rb:40:in `exec' | |
from C:/Ruby192/lib/ruby/gems/1.9.1/ge |
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
name: JustEat.BootStrapper | |
use-symlinks: false | |
depends: openwrap anchored content | |
depends: nunit | |
depends: RestSharp | |
build: msbuild; profile=net40 | |
depends: rhinomocks | |
depends: nlog | |
depends: nlog.schema |
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
c:\src\branches\Ulrika_PD-17298\JustEat\components\JustEat.Testing>bundle exec rake -tv verbosity=debug build_number=666 clobber package | |
DEBUG - generate assembly info for JustEat.Testing | |
DEBUG - generate assembly info for JustEat.Testing.Tests | |
** Invoke clobber (first_time) | |
** Invoke clean (first_time) | |
** Execute clean | |
rm -rf bin | |
rm -rf src/JustEat.Testing/Properties/AssemblyInfo.cs | |
rm -rf testing/JustEat.Testing.Tests/Properties/AssemblyInfo.cs | |
rm -rf bin/TestResults.xml |
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
#!/bin/bash | |
#################################### | |
# BASIC REQUIREMENTS | |
# http://graphite.wikidot.com/installation | |
# Forked from: http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
# Ubuntu 11.10 Oneiric Ocelot | |
# Forked from https://gist.github.com/1287170 | |
# Modified to use NGinx + uwsgi instead of Apache, as well as memcached and supervisord, incorporating ideas from | |
# http://blog.adku.com/2011/10/scalable-realtime-stats-with-graphite.html |
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 git | |
sudo apt-get install g++ curl libssl-dev apache2-utils | |
sudo apt-get install git-core | |
# download the Node source, compile and install it | |
git clone https://github.com/joyent/node.git | |
cd node | |
./configure | |
make | |
sudo make install | |
# install the Node package manager for later use |
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
gem 'justeat_pacman_deploy', :git => 'https://[email protected]/Peter-Mounce/gem_justeat_pacman_deploy.git' |
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
## Get-WebFile (aka wget for PowerShell) | |
############################################################################################################## | |
## Downloads a file or page from the web | |
## History: | |
## v3.6 - Add -Passthru switch to output TEXT files | |
## v3.5 - Add -Quiet switch to turn off the progress reports ... | |
## v3.4 - Add progress report for files which don't report size | |
## v3.3 - Add progress report for files which report their size | |
## v3.2 - Use the pure Stream object because StreamWriter is based on TextWriter: | |
## it was messing up binary files, and making mistakes with extended characters in text |
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 7-zip, curl and vim | |
# (Windows 2012 comes with .NET 4.5 out-of-the-box) | |
# Then use the EC2 tools to create a new AMI from the result, and you have a system | |
# that will execute user-data as a PowerShell script after the instance fires up! | |
# This has been tested on Windows 2012 64bits AMIs provided by Amazon (eu-west-1 ami-a1867dd6) | |
# | |
# Inject this as user-data of a Windows 2012 AMI, like this (edit the adminPassword to your needs): | |
# | |
# <powershell> | |
# Set-ExecutionPolicy Unrestricted |
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
FROM ubuntu | |
RUN apt-get update | |
RUN apt-get -y install curl wget git vim python python-pip python-dev | |
# Install anthracite | |
RUN git clone --recursive https://github.com/Dieterbe/anthracite.git /opt/anthracite | |
add ./config.py /opt/anthracite/config.py |
OlderNewer