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
#!/bin/bash | |
gem install bundler | |
git clone git://github.com/fidothe/pub_finder_general.git | |
cd pub_finder_general | |
bundle install |
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
#!/bin/bash | |
for i in `find . -name Gemfile -depth 2 | xargs -n1 dirname` | |
do | |
pushd $i | |
bundle install | |
popd | |
done |
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
# If you want to use gem pristine with RVM gemsets after ditching MacPorts for Homebrew | |
# in order to recompile native gems you need to exclude things in the global gemset | |
# probably rake, bundler, maybe rdoc | |
gem list --no-versions | grep -v bundler | grep -v rake | xargs -n1 gem pristine | |
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
$ cucumber # (culerity harness) -> | |
system "cucumber" # (culerity generated test app) -> | |
"rvm jruby@culerity ruby /path/to/script/to/start/celerity.rb" # eventual celerity invocation | |
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
gad:~ matt$ rvm jruby@culerity -e "puts 'hello world'" | |
info: jruby-1.5.1: jruby 1.5.1 (ruby 1.8.7 patchlevel 249) (2010-06-06 f3a3480) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_20) [x86_64-java] | |
hello world | |
gad:~ matt$ | |
gad:~ matt$ ruby -e "puts 'hello world'" | |
hello world | |
gad:~ matt$ |
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
#!/bin/sh | |
sudo mkdir -p /usr/local/hudson | |
sudo curl -k -L http://hudson.gotdns.com/latest/hudson.war -o /usr/local/hudson/hudson.war |
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
<!--: spam | |
Content-Type: text/html | |
<body><font style="color: white; font-size: 1px"> --> | |
<body><font style="color: white; font-size: 1px"> --> --> | |
</font> </font> </font> </script> </object> </blockquote> </pre> | |
</table> </table> </table> </table> </table> </font> </font> </font> | |
<div class="cgitb"> | |
<script type="text/javascript"> | |
function toggleDebugInfo() { |
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
# For mocha integration, add this file into features/support folder | |
require "mocha" | |
World(Mocha::Standalone) | |
Before do | |
mocha_setup | |
end |